From a1d9fec91fca3937d8fb655a57c24ff4f60df0e0 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Wed, 8 Apr 2026 11:50:42 +0100 Subject: [PATCH] aco/gfx11.7: don't create v_dot2c_f32_f16 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rhys Perry Reviewed-by: Georg Lehmann Reviewed-by: Marek Olšák Part-of: --- src/amd/compiler/aco_register_allocation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/compiler/aco_register_allocation.cpp b/src/amd/compiler/aco_register_allocation.cpp index aa18c3e5053..438b432df9c 100644 --- a/src/amd/compiler/aco_register_allocation.cpp +++ b/src/amd/compiler/aco_register_allocation.cpp @@ -3128,7 +3128,7 @@ vop3_can_use_vop2acc(ra_ctx& ctx, Instruction* instr) return false; break; case aco_opcode::v_dot2_f32_f16: - if (ctx.program->gfx_level < GFX10 || ctx.program->gfx_level >= GFX12) + if (ctx.program->gfx_level < GFX10 || ctx.program->gfx_level >= GFX11_7) return false; break; default: return false;