diff options
author | Samuel Pitoiset <[email protected]> | 2020-01-13 10:37:01 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-15 07:45:29 +0000 |
commit | 53b50be35cd11dfa1209de63e997256404e51468 (patch) | |
tree | c882e45303eed4979acf137e2800ad4293641f64 /src | |
parent | 5ff12322c9d79780bf4f655aad831e4acb744ee7 (diff) |
radv/gfx10: enable all CUs if NGG is never used
Ported from RadeonSI.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3382>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/vulkan/si_cmd_buffer.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/amd/vulkan/si_cmd_buffer.c b/src/amd/vulkan/si_cmd_buffer.c index 4ba86e31ebc..379d8d5fcd4 100644 --- a/src/amd/vulkan/si_cmd_buffer.c +++ b/src/amd/vulkan/si_cmd_buffer.c @@ -327,8 +327,11 @@ si_emit_graphics(struct radv_physical_device *physical_device, } } - /* Don't use late alloc for NGG on Navi14 due to a hw bug. */ - if (physical_device->rad_info.family == CHIP_NAVI14) { + /* Don't use late alloc for NGG on Navi14 due to a hw bug. + * If NGG is never used, enable all CUs. + */ + if (!physical_device->use_ngg || + physical_device->rad_info.family == CHIP_NAVI14) { late_alloc_limit_gs = 0; cu_mask_gs = 0xffff; } |