diff options
author | Jason Ekstrand <[email protected]> | 2019-03-19 10:47:34 -0500 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-03-20 09:26:56 -0500 |
commit | 9a129510f56f792cc8c2745999b6815b8f8b6ddb (patch) | |
tree | 69016df5749cbb607814515d531e289ee9d1ad72 | |
parent | 4fa61273a8c8809a9ca0a1473b5e361aa5715ae0 (diff) |
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 <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index a6ecc657f4b..7ba2e802c25 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -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, |