Home
last modified time | relevance | path

Searched refs:max_cs_threads (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/intel/common/
Dgen_device_info.c155 .max_cs_threads = 36,
183 .max_cs_threads = 64,
211 .max_cs_threads = 32,
244 .max_cs_threads = 70,
271 .max_cs_threads = 70,
298 .max_cs_threads = 70,
337 .max_cs_threads = 42,
360 .max_cs_threads = 56,
383 .max_cs_threads = 56,
411 .max_cs_threads = 6 * 7,
[all …]
Dgen_device_info.h147 unsigned max_cs_threads; member
/external/mesa3d/src/intel/vulkan/
Danv_device.c403 uint32_t max_cs_threads = in anv_physical_device_init() local
407 if (max_cs_threads > device->info.max_cs_threads) in anv_physical_device_init()
408 device->info.max_cs_threads = max_cs_threads; in anv_physical_device_init()
872 .maxComputeWorkGroupInvocations = 16 * devinfo->max_cs_threads, in anv_GetPhysicalDeviceProperties()
874 16 * devinfo->max_cs_threads, in anv_GetPhysicalDeviceProperties()
875 16 * devinfo->max_cs_threads, in anv_GetPhysicalDeviceProperties()
876 16 * devinfo->max_cs_threads, in anv_GetPhysicalDeviceProperties()
Danv_allocator.c1127 scratch_ids_per_subslice = devinfo->max_cs_threads; in anv_scratch_pool_alloc()
DgenX_pipeline.c1822 devinfo->max_cs_threads * subslices - 1;
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_context.c728 uint32_t max_cs_threads = screen->eu_total / screen->subslice_total * 7; in brw_initialize_cs_context_constants() local
731 if (max_cs_threads > devinfo->max_cs_threads) in brw_initialize_cs_context_constants()
732 devinfo->max_cs_threads = max_cs_threads; in brw_initialize_cs_context_constants()
744 const unsigned max_threads = MIN2(64, devinfo->max_cs_threads); in brw_initialize_cs_context_constants()
Dbrw_compute.c142 assert(thread_width_max <= brw->screen->devinfo.max_cs_threads); in brw_emit_gpgpu_walker()
Dbrw_program.c430 scratch_ids_per_subslice = devinfo->max_cs_threads; in brw_alloc_stage_scratch()
DgenX_state_upload.c4236 vfe.MaximumNumberofThreads = devinfo->max_cs_threads * subslices - 1;
/external/mesa3d/src/intel/compiler/
Dbrw_fs.cpp7034 DIV_ROUND_UP(local_workgroup_size, compiler->devinfo->max_cs_threads); in brw_compile_cs()