[PATCH] D125987: [SLP] Account for cost of removing FMA opportunities by horizontal reduction

Alexey Bataev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 19 10:00:33 PDT 2022


ABataev added inline comments.


================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:9675
+// the tree of multiplies.
+static InstructionCost getFMALossCost(const TargetTransformInfo *TTI,
+                                      Value *TreeRootOp, FastMathFlags FMF,
----------------
wjschmidt wrote:
> ABataev wrote:
> > I think it must be a part of TTI::getArithmeticReductionCost
> Because this will also be called in a case where it's not part of a reduction, I'd like to keep it separate.  (See my comment in the summary.)  Perhaps I shouldn't have split the patches so this would be more evident.
Anyway, maybe better to make it a part of TTI rather than put it to SLPVectorizer?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D125987/new/

https://reviews.llvm.org/D125987



More information about the llvm-commits mailing list