mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 20:00:10 +01:00
anv: Bump maxComputeWorkgroupInvocations
We initially set this lower because we didn't have SIMD32 support yet but we've supported SIMD32 for quite some time now. We should bump it up to the real limit. Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
4fa61273a8
commit
9a129510f5
1 changed files with 1 additions and 1 deletions
|
|
@ -1132,7 +1132,7 @@ void anv_GetPhysicalDeviceProperties(
|
|||
.maxFragmentCombinedOutputResources = 8,
|
||||
.maxComputeSharedMemorySize = 32768,
|
||||
.maxComputeWorkGroupCount = { 65535, 65535, 65535 },
|
||||
.maxComputeWorkGroupInvocations = 16 * devinfo->max_cs_threads,
|
||||
.maxComputeWorkGroupInvocations = 32 * devinfo->max_cs_threads,
|
||||
.maxComputeWorkGroupSize = {
|
||||
16 * devinfo->max_cs_threads,
|
||||
16 * devinfo->max_cs_threads,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue