aco: update is_dual_issue_capable for gfx11.5+

Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
Reviewed-by: Daniel Schürmann <None>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33111>
This commit is contained in:
Georg Lehmann
2025-01-19 10:17:12 +01:00
committed by Marge Bot
parent e18e293e6c
commit 997ea2e273
+6 -1
View File
@@ -142,7 +142,12 @@ is_dual_issue_capable(const Program& program, const Instruction& instr)
}
return false;
}
default: return false;
default:
if (instr.isVINTERP_INREG())
return program.gfx_level >= GFX11_5;
if (instr.isVOPC() && instr_info.classes[(int)instr.opcode] == instr_class::valu32)
return program.gfx_level == GFX11_5;
return false;
}
}