Searched refs:max_cs_threads (Results 1 – 15 of 15) sorted by relevance
/external/mesa3d/src/intel/dev/ |
D | gen_device_info.c | 226 .max_cs_threads = 36, 255 .max_cs_threads = 64, 284 .max_cs_threads = 32, 318 .max_cs_threads = 70, 346 .max_cs_threads = 70, 374 .max_cs_threads = 70, 421 .max_cs_threads = 42, 445 .max_cs_threads = 56, 468 .max_cs_threads = 56, 497 .max_cs_threads = 6 * 7, [all …]
|
D | gen_device_info.h | 207 unsigned max_cs_threads; member
|
D | intel_device_info.c | 110 fprintf(stdout, " max CS threads: %u\n", devinfo.max_cs_threads); in main()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_context.c | 815 uint32_t max_cs_threads = screen->eu_total / screen->subslice_total * 7; in brw_initialize_cs_context_constants() local 818 if (max_cs_threads > devinfo->max_cs_threads) in brw_initialize_cs_context_constants() 819 devinfo->max_cs_threads = max_cs_threads; in brw_initialize_cs_context_constants() 831 const unsigned max_threads = MIN2(64, devinfo->max_cs_threads); in brw_initialize_cs_context_constants()
|
D | brw_misc_state.c | 502 devinfo->max_cs_threads * subslices - 1; in brw_emit_select_pipeline()
|
D | brw_program.c | 517 scratch_ids_per_subslice = devinfo->max_cs_threads; in brw_alloc_stage_scratch()
|
D | genX_state_upload.c | 4332 vfe.MaximumNumberofThreads = devinfo->max_cs_threads * subslices - 1;
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_device.c | 494 uint32_t max_cs_threads = in anv_physical_device_try_create() local 498 if (max_cs_threads > device->info.max_cs_threads) in anv_physical_device_try_create() 499 device->info.max_cs_threads = max_cs_threads; in anv_physical_device_try_create() 1513 const uint32_t max_workgroup_size = 32 * MIN2(64, devinfo->max_cs_threads); in anv_GetPhysicalDeviceProperties() 2059 props->maxComputeWorkgroupSubgroups = MIN2(64, pdevice->info.max_cs_threads); in anv_GetPhysicalDeviceProperties2()
|
D | anv_allocator.c | 1497 scratch_ids_per_subslice = devinfo->max_cs_threads; in anv_scratch_pool_alloc()
|
D | genX_pipeline.c | 2386 devinfo->max_cs_threads * subslices - 1;
|
D | genX_cmd_buffer.c | 4745 devinfo->max_cs_threads * subslices - 1; in genX()
|
/external/mesa3d/src/gallium/drivers/iris/ |
D | iris_screen.c | 517 const unsigned max_threads = MIN2(64, devinfo->max_cs_threads); in iris_get_compute_param()
|
D | iris_program.c | 2121 unsigned scratch_ids_per_subslice = devinfo->max_cs_threads; in iris_get_scratch_space()
|
D | iris_state.c | 6739 devinfo->max_cs_threads * screen->subslice_total - 1; in iris_upload_gpgpu_walker()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_fs.cpp | 9175 const uint32_t max_threads = MIN2(64, compiler->devinfo->max_cs_threads); in brw_compile_cs() 9401 const uint32_t max_threads = MIN2(64, devinfo->max_cs_threads); in brw_cs_simd_size_for_group_size()
|