[llvm] [AArch64][SVE] Add dot product lowering for PARTIAL_REDUCE_MLA node (PR #130933)
Benjamin Maxwell via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 06:44:47 PDT 2025
================
@@ -1585,6 +1585,21 @@ AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM,
setOperationAction(ISD::MSTORE, VT, Custom);
}
+ for (MVT VT : MVT::integer_scalable_vector_valuetypes()) {
+ if (!EnablePartialReduceNodes)
+ break;
+ for (MVT InnerVT : MVT::integer_scalable_vector_valuetypes()) {
+ ElementCount VTElemCount = VT.getVectorElementCount();
+ if (VTElemCount.getKnownMinValue() == 1)
+ continue;
+ if (VTElemCount * 4 == InnerVT.getVectorElementCount())
+ setPartialReduceMLAAction(VT, InnerVT, Custom);
+ if (InnerVT.getVectorElementType().getSizeInBits() * 4 ==
+ VT.getVectorElementType().getSizeInBits())
+ setPartialReduceMLAAction(VT, InnerVT, Legal);
+ }
+ }
----------------
MacDue wrote:
Update: My understanding (looking at other vector operations and what happens when lowering partial reductions) is that before LegalizeVectorOps all vector illegal types have already been split or expanded.
The default operation action for partial reductions should probably be "legal" (which is consistent with other operations), then legal SVE type combinations that can't be lowered to a DOT/or wide add are marked as "Expand", and type combinations that have a possible "Custom" lowering (none in this patch) are marked as "Custom".
https://github.com/llvm/llvm-project/pull/130933
More information about the llvm-commits
mailing list