[llvm] [AArch64][SVE] Add partial reduction SDNodes (PR #117185)
Benjamin Maxwell via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 17 07:05:32 PST 2024
================
@@ -8147,7 +8147,7 @@ void SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I,
if (!TLI.shouldExpandPartialReductionIntrinsic(cast<IntrinsicInst>(&I))) {
setValue(&I,
- DAG.getNode(ISD::PARTIAL_REDUCE_UADD, dl, AccVT, Acc, Input));
+ DAG.getNode(ISD::PARTIAL_REDUCE_UMLA, dl, AccVT, Acc, Input));
----------------
MacDue wrote:
It looks like you've left this to `tryCombineToDotProduct`, but that means the node you create here is broken (since it's missing an operand, and is not meant to multiply anything).
https://github.com/llvm/llvm-project/pull/117185
More information about the llvm-commits
mailing list