diff options
author | Dave Airlie <[email protected]> | 2018-04-23 10:16:07 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2018-04-24 09:08:33 +1000 |
commit | f77caa741135e0dbdcbbf9e619195f47c2c591b2 (patch) | |
tree | 02a6fea26010db2f8b48e95258b5d3f0a0fbad4e /src/amd/vulkan/radv_shader.c | |
parent | 899df55ee046847dfd2a49059a649da4e6c29fdb (diff) |
ac/radv/radeonsi: refactor max simd waves into common code.
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_shader.c')
-rw-r--r-- | src/amd/vulkan/radv_shader.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c index 8e8a32f0256..aaa67029755 100644 --- a/src/amd/vulkan/radv_shader.c +++ b/src/amd/vulkan/radv_shader.c @@ -615,17 +615,7 @@ generate_shader_stats(struct radv_device *device, unsigned max_simd_waves; unsigned lds_per_wave = 0; - switch (device->physical_device->rad_info.family) { - /* These always have 8 waves: */ - case CHIP_POLARIS10: - case CHIP_POLARIS11: - case CHIP_POLARIS12: - case CHIP_VEGAM: - max_simd_waves = 8; - break; - default: - max_simd_waves = 10; - } + max_simd_waves = ac_get_max_simd_waves(device->physical_device->rad_info.family); conf = &variant->config; |