[llvm] [polly] [clang] [polly][ScheduleOptimizer] Fix long compile time(hang) reported in polly (PR #75141)

Shivam Gupta via cfe-commits cfe-commits at lists.llvm.org
Tue Dec 12 08:45:51 PST 2023


================
@@ -0,0 +1,97 @@
+; RUN: opt -S -polly-optree -polly-delicm  -polly-opt-isl -polly-schedule-computeout=100000 -debug-only="polly-opt-isl" < %s 2>&1 | FileCheck %s
+; Bailout if the computations of schedule compute exceeds the max scheduling quota.
+; Max compute out is initialized to 300000, Here it is set to 100000 for test purpose.
+
+target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
+target triple = "aarch64-unknown-linux-gnu"
----------------
xgupta wrote:

Target triple information is not required here since the transformation is target-independent.

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


More information about the cfe-commits mailing list