diff options
author | Samuel Pitoiset <[email protected]> | 2018-11-08 14:48:31 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-11-12 09:35:46 +0100 |
commit | 97fb1a02fd5724028a485516d19f8803d023dec8 (patch) | |
tree | f578d2093e23184c798f9d492c9b2b1908904c1d | |
parent | d9d14346c2ba66bfef7ca120ccbcd3201ca32359 (diff) |
radv: make use of num_good_cu_per_sh in si_emit_graphics() too
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
-rw-r--r-- | src/amd/vulkan/si_cmd_buffer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/amd/vulkan/si_cmd_buffer.c b/src/amd/vulkan/si_cmd_buffer.c index be371913069..f4da2b38fdd 100644 --- a/src/amd/vulkan/si_cmd_buffer.c +++ b/src/amd/vulkan/si_cmd_buffer.c @@ -278,8 +278,7 @@ si_emit_graphics(struct radv_physical_device *physical_device, radeon_set_sh_reg(cs, R_00B21C_SPI_SHADER_PGM_RSRC3_GS, S_00B21C_CU_EN(0xffff) | S_00B21C_WAVE_LIMIT(0x3F)); - if (physical_device->rad_info.num_good_compute_units / - (physical_device->rad_info.max_se * physical_device->rad_info.max_sh_per_se) <= 4) { + if (physical_device->rad_info.num_good_cu_per_sh <= 4) { /* Too few available compute units per SH. Disallowing * VS to run on CU0 could hurt us more than late VS * allocation would help. |