mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
ac/nir: Set larged wrokgroup size for GS on GFX9.
They don't take a single wave anymore and we need the barriers.
Fixes: 6bc42855f9 'radv: enable GS on GFX9'
Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
9e82f2b3ea
commit
24fe4e6143
1 changed files with 1 additions and 1 deletions
|
|
@ -6457,7 +6457,7 @@ ac_nir_get_max_workgroup_size(enum chip_class chip_class,
|
|||
case MESA_SHADER_TESS_CTRL:
|
||||
return chip_class >= CIK ? 128 : 64;
|
||||
case MESA_SHADER_GEOMETRY:
|
||||
return 64;
|
||||
return chip_class >= GFX9 ? 128 : 64;
|
||||
case MESA_SHADER_COMPUTE:
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue