[llvm] [LoopVectorizer] Prune VFs based on plan register pressure (PR #132190)

Benjamin Maxwell via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 25 08:50:08 PDT 2025


================
@@ -4240,27 +4235,12 @@ ElementCount LoopVectorizationCostModel::getMaximizedVFForTarget(
         ComputeScalableMaxVF);
     MaxVectorElementCountMaxBW = MinVF(MaxVectorElementCountMaxBW, MaxSafeVF);
 
-    // Collect all viable vectorization factors larger than the default MaxVF
-    // (i.e. MaxVectorElementCount).
-    SmallVector<ElementCount, 8> VFs;
+    // Set the max VF to the largest viable vectorization factor less than or
+    // equal to the max vector element count.
     for (ElementCount VS = MaxVectorElementCount * 2;
          ElementCount::isKnownLE(VS, MaxVectorElementCountMaxBW); VS *= 2)
-      VFs.push_back(VS);
-
-    // For each VF calculate its register usage.
-    auto RUs = calculateRegisterUsage(VFs);
+      MaxVF = VS;
----------------
MacDue wrote:

Given these element counts are powers of 2 (it appears `bit_floor` is used above), I think this is just:
```
MaxVF = MaxVectorElementCountMaxBW;
```
(assuming `MaxVectorElementCount <= MaxVectorElementCountMaxBW`)

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


More information about the llvm-commits mailing list