[llvm] [SLPVectorizer][NVPTX] Customize getBuildVectorCost for NVPTX (PR #128077)

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 08:49:38 PST 2025


================
@@ -10203,6 +10203,9 @@ class BoUpSLP::ShuffleCostEstimator : public BaseShuffleAnalysis {
     if ((!Root && allConstant(VL)) || all_of(VL, IsaPred<UndefValue>))
       return TTI::TCC_Free;
     auto *VecTy = getWidenedType(ScalarTy, VL.size());
+    if (auto Cost = TTI.getBuildVectorCost(VecTy, VL, CostKind);
----------------
alexey-bataev wrote:

It should not be here. Rework getScalarizationOverhead instead

https://github.com/llvm/llvm-project/pull/128077


More information about the llvm-commits mailing list