radv: Change max preferred task workgroup invocations to 64.

This was accidentally left at the maximum possible value.
However I now tested this with the cadscene demo app and there is
hardly any benefit from going above 64. Set it to 64 for now.

Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18566>
This commit is contained in:
Timur Kristóf
2022-09-13 01:02:25 +02:00
committed by Marge Bot
parent 98e3c446d8
commit 3e6ad428b6
+1 -1
View File
@@ -2617,7 +2617,7 @@ radv_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice,
properties->meshOutputPerVertexGranularity = 1;
properties->meshOutputPerPrimitiveGranularity = 1;
properties->maxPreferredTaskWorkGroupInvocations = 1024;
properties->maxPreferredTaskWorkGroupInvocations = 64;
properties->maxPreferredMeshWorkGroupInvocations = 128;
properties->prefersLocalInvocationVertexOutput = true;
properties->prefersLocalInvocationPrimitiveOutput = true;