From ad459054ed9900a0fa4672fd7a72a44a326bfdf3 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Thu, 15 Dec 2022 09:03:30 +0100 Subject: [PATCH] radv: enable SQTT tracing on GFX11 Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/vulkan/radv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index f0ea543f1d1..c433d5068c0 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -4055,7 +4055,7 @@ radv_CreateDevice(VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo *pCr if (radv_thread_trace_enabled()) { if (device->physical_device->rad_info.gfx_level < GFX8 || - device->physical_device->rad_info.gfx_level > GFX10_3) { + device->physical_device->rad_info.gfx_level > GFX11) { fprintf(stderr, "GPU hardware not supported: refer to " "the RGP documentation for the list of " "supported GPUs!\n");