radv: disable VK_KHR_cooperative_matrix on GFX12

I have it mostly but it won't be ready in time for 25.0 and the changes
are probably too large for a backport.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33257>
This commit is contained in:
Samuel Pitoiset 2025-01-28 10:14:34 +01:00 committed by Marge Bot
parent 9d528b9966
commit 50a0d1fd65

View file

@ -111,6 +111,9 @@ radv_filter_minmax_enabled(const struct radv_physical_device *pdev)
static bool
radv_cooperative_matrix_enabled(const struct radv_physical_device *pdev)
{
if (pdev->info.gfx_level == GFX12)
return false; /* TODO */
return pdev->info.gfx_level >= GFX11 && !pdev->use_llvm;
}