diff options
author | Samuel Pitoiset <[email protected]> | 2018-10-29 11:37:01 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-11-01 08:49:08 +0100 |
commit | 0c08074cef76bfb8aef1d2e5279efdab2d17ab41 (patch) | |
tree | e6e65724ad497b08cfd41d04f10f1b63b68804b1 /src/amd/vulkan | |
parent | 9278089d05bf3ac97064021073601d30ddc528fc (diff) |
radv: use radeon_info::num_good_cu_per_sh
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 6367c732dbb..d68111c25bf 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1098,9 +1098,7 @@ void radv_GetPhysicalDeviceProperties2( properties->shaderArraysPerEngineCount = pdevice->rad_info.max_sh_per_se; properties->computeUnitsPerShaderArray = - pdevice->rad_info.num_good_compute_units / - (pdevice->rad_info.max_se * - pdevice->rad_info.max_sh_per_se); + pdevice->rad_info.num_good_cu_per_sh; properties->simdPerComputeUnit = 4; properties->wavefrontsPerSimd = pdevice->rad_info.family == CHIP_TONGA || |