diff options
author | Samuel Pitoiset <[email protected]> | 2019-08-21 08:38:24 +0200 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-09-04 11:50:53 -0700 |
commit | 3ab1368c4f4aa02e7f5aa5ad239370ba7094f002 (patch) | |
tree | 08557e699cfc13b1691611ac73a285bae0e44be0 /src/amd | |
parent | 71daf2ef6771f96aa748caae77c7e6ef31faf43f (diff) |
radv: allow to enable VK_AMD_shader_ballot only on GFX8+
Scans aren't implemented on SI/CIK.
Cc: 19.2 <[email protected]>
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
(cherry picked from commit e73d863a66caac796ed5fb543a77f0b892df8573)
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 3 | ||||
-rw-r--r-- | src/amd/vulkan/radv_shader.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index cc45ac95c08..4aafe6e78aa 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -383,7 +383,8 @@ radv_physical_device_init(struct radv_physical_device *device, device->rad_info.family == CHIP_RENOIR || device->rad_info.chip_class >= GFX10; - device->use_shader_ballot = device->instance->perftest_flags & RADV_PERFTEST_SHADER_BALLOT; + device->use_shader_ballot = device->rad_info.chip_class >= GFX8 && + device->instance->perftest_flags & RADV_PERFTEST_SHADER_BALLOT; /* Determine the number of threads per wave for all stages. */ device->cs_wave_size = 64; diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c index cb819388fa4..9397c5d6f40 100644 --- a/src/amd/vulkan/radv_shader.c +++ b/src/amd/vulkan/radv_shader.c @@ -297,7 +297,7 @@ radv_shader_compile_to_nir(struct radv_device *device, .lower_ubo_ssbo_access_to_offsets = true, .caps = { .amd_gcn_shader = true, - .amd_shader_ballot = device->instance->perftest_flags & RADV_PERFTEST_SHADER_BALLOT, + .amd_shader_ballot = device->physical_device->use_shader_ballot, .amd_trinary_minmax = true, .derivative_group = true, .descriptor_array_dynamic_indexing = true, |