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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user