[polly] [polly] Bound ISL operations during pre-vectorization (PR #143876)

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 9 15:50:29 PDT 2025


================
@@ -574,7 +580,12 @@ ScheduleTreeOptimizer::optimizeBand(__isl_take isl_schedule_node *NodeArg,
   if (OAI->Prevect) {
     // FIXME: Prevectorization requirements are different from those checked by
     // isTileableBandNode.
-    Node = applyPrevectBandOpt(Node);
+    {
+      IslMaxOperationsGuard MaxOpGuard(Node.ctx().get(), ScheduleComputeOut);
----------------
Meinersbur wrote:

I created a proof-of-concept: #162748. It is not complete yet (missing a test case) and in draft statis. You can either adopt the code there or let me complete that PR.

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


More information about the llvm-commits mailing list