[llvm-branch-commits] [llvm] AMDGPU: Codegen for v_dual_dot2acc_f32_f16/bf16 from VOP3 (PR #179226)
Mirko BrkuĊĦanin via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Feb 11 10:03:27 PST 2026
================
@@ -752,6 +752,9 @@ defm Dot13Insts : AMDGPUSubtargetFeature<"dot13-insts",
"Has v_dot2c_f32_bf16 instructions"
>;
+def HasOnlyDualDot2AccF32F16 : Predicate<"Subtarget->hasVOPDInsts() && Subtarget->hasDot10Insts() && !Subtarget->hasDot5Insts()">;
+def HasOnlyDualDot2AccF32BF16 : Predicate<"Subtarget->hasVOPDInsts() && Subtarget->hasDot12Insts() && !Subtarget->hasDot13Insts()">;
+
----------------
mbrkusanin wrote:
Move this lower in the file next to other predicates
https://github.com/llvm/llvm-project/pull/179226
More information about the llvm-branch-commits
mailing list