[polly] [polly] Bound ISL operations during pre-vectorization (PR #143876)
Shikhar Jain via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 10 04:06:16 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);
----------------
ShikharjQUIC wrote:
I am currently reviewing your proposed changes ( #162748). If the changes do not introduce any new issues (such as crashes), I will adopt them and proceed with finalizing the PR as soon as possible.
https://github.com/llvm/llvm-project/pull/143876
More information about the llvm-commits
mailing list