mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-23 05:20:30 +01:00
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:
parent
9d528b9966
commit
50a0d1fd65
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue