aco/gfx11.7: don't create v_dot2c_f32_f16

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40917>
This commit is contained in:
Rhys Perry 2026-04-08 11:50:42 +01:00 committed by Marge Bot
parent efb863173e
commit a1d9fec91f

View file

@ -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;