summaryrefslogtreecommitdiff
path: root/omega/examples/floor_bound
diff options
context:
space:
mode:
authordhuth <derickhuth@gmail.com>2014-11-21 13:35:20 -0700
committerdhuth <derickhuth@gmail.com>2014-11-21 13:35:20 -0700
commita1834b22c43c282442b0cb164767e6c877cf0e5b (patch)
treebedc5be7d1bdb8d32c1868caa496a8a1530d8d8a /omega/examples/floor_bound
parentded84bb4aec7461738e7b7033d782a518e2c606b (diff)
parenteb9236c5353785472ae132f27e1cfb9f1e4264a5 (diff)
downloadchill-a1834b22c43c282442b0cb164767e6c877cf0e5b.tar.gz
chill-a1834b22c43c282442b0cb164767e6c877cf0e5b.tar.bz2
chill-a1834b22c43c282442b0cb164767e6c877cf0e5b.zip
Merge branch 'master' into doe
Diffstat (limited to 'omega/examples/floor_bound')
-rw-r--r--omega/examples/floor_bound46
1 files changed, 46 insertions, 0 deletions
diff --git a/omega/examples/floor_bound b/omega/examples/floor_bound
new file mode 100644
index 0000000..3cb0d57
--- /dev/null
+++ b/omega/examples/floor_bound
@@ -0,0 +1,46 @@
+#
+# Test floor/ceiling variable definitions in loop bounds
+# Notes:
+# intFloor, intCeil are strict mathematical definition,
+# intMod(a,b) always has input b>0 and returns [0,b).
+#
+
+symbolic m, n;
+
+# loop is strided
+#
+is := {[i]: exists (alpha: i = 4alpha && m <= 3i <= n)};
+codegen is;
+
+# only one single floor/ceiling variable in bound
+#
+is := {[i]: exists (lb: m-4 < 4*lb <= m && lb <= i <= n)};
+codegen is;
+
+# the floor/ceiling variable in bound has coefficient
+#
+is := {[i]: exists (lb: m-4 < 4*lb <= m && 4*lb <= i <= n)};
+codegen is;
+
+# mutiple floor/ceiling variables in bound
+#
+is := {[i]:exists (alpha,beta: m-4<4alpha<=m && m-3<3beta<=m &&
+ 4alpha+3*beta<=i<=n )};
+codegen is;
+
+# non-tight floor/ceiling definition
+#
+is := {[i]: exists (ub: n-2 < 3*ub <= n && m <= i <= 5*ub)};
+codegen is;
+
+# chain floor/ceiling definitions
+#
+is := {[i]: exists (alpha, beta: beta-4<4alpha<=beta &&
+ m-8<8beta<=m && 4alpha<=i<=n )};
+codegen is;
+
+# one complicated case
+#
+is := {[i]: exists (alpha, beta: beta-4<4alpha<=beta &&
+ m-7<8beta<=m && 4alpha<=i<=n )};
+codegen is;