From c85805e10bd9d4b4fec3ca042a7f0ac859010995 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Wed, 8 Apr 2026 14:57:31 +0100 Subject: [PATCH] radv/gfx11.7: enable shaderMixedFloatDotProductFloat8AccFloat32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rhys Perry Reviewed-by: Samuel Pitoiset Reviewed-by: Marek Olšák Part-of: --- src/amd/vulkan/radv_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_physical_device.c b/src/amd/vulkan/radv_physical_device.c index 8e9dc58b5f2..f5b5831f5b8 100644 --- a/src/amd/vulkan/radv_physical_device.c +++ b/src/amd/vulkan/radv_physical_device.c @@ -1526,7 +1526,7 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc .shaderMixedFloatDotProductFloat16AccFloat32 = true, .shaderMixedFloatDotProductFloat16AccFloat16 = pdev->info.gfx_level >= GFX11, .shaderMixedFloatDotProductBFloat16Acc = radv_bfloat16_enabled(pdev), - .shaderMixedFloatDotProductFloat8AccFloat32 = pdev->info.gfx_level >= GFX12, + .shaderMixedFloatDotProductFloat8AccFloat32 = pdev->info.gfx_level >= GFX11_7, /* VK_KHR_copy_memory_indirect */ .indirectMemoryCopy = pdev->info.gfx_level >= GFX8,