diff options
author | Dave Airlie <[email protected]> | 2018-02-26 20:51:55 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2018-02-27 00:54:59 +0000 |
commit | 250468f6b7bb85b6c0097120ec9860d9185fd03a (patch) | |
tree | 16c5e4911d4a01a078c29f12d27e5537bceb9cb8 | |
parent | 1fc19a0f274e83a4066d9ea0741ea854288f5a15 (diff) |
radv: expose async compute on SI
It looks like we had all the pieces in place for this,
just never tested it and turned it on.
I don't see any CTS regressions and the computeshader
demo runs.
Acked-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_device.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 763c4e41c82..92865122ad5 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -880,7 +880,6 @@ static void radv_get_physical_device_queue_family_properties( int num_queue_families = 1; int idx; if (pdevice->rad_info.num_compute_rings > 0 && - pdevice->rad_info.chip_class >= CIK && !(pdevice->instance->debug_flags & RADV_DEBUG_NO_COMPUTE_QUEUE)) num_queue_families++; @@ -907,7 +906,6 @@ static void radv_get_physical_device_queue_family_properties( } if (pdevice->rad_info.num_compute_rings > 0 && - pdevice->rad_info.chip_class >= CIK && !(pdevice->instance->debug_flags & RADV_DEBUG_NO_COMPUTE_QUEUE)) { if (*pCount > idx) { *pQueueFamilyProperties[idx] = (VkQueueFamilyProperties) { |