[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
Wed Mar 26 09:56:44 PDT 2025
================
@@ -1585,6 +1585,26 @@ AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM,
setOperationAction(ISD::MSTORE, VT, Custom);
}
+ if (EnablePartialReduceNodes) {
+ for (MVT VT : MVT::integer_scalable_vector_valuetypes()) {
+ for (MVT InnerVT : MVT::integer_scalable_vector_valuetypes()) {
----------------
MacDue wrote:
Though you might want to setup the fixed vectors elsewhere (I think this bit of code might be under `if (Subtarget->isSVEorStreamingSVEAvailable()) {`)
https://github.com/llvm/llvm-project/pull/130933
More information about the llvm-commits
mailing list