summaryrefslogtreecommitdiff
path: root/omegalib/examples/syr2k
diff options
context:
space:
mode:
Diffstat (limited to 'omegalib/examples/syr2k')
-rw-r--r--omegalib/examples/syr2k17
1 files changed, 0 insertions, 17 deletions
diff --git a/omegalib/examples/syr2k b/omegalib/examples/syr2k
deleted file mode 100644
index 29cdf4e..0000000
--- a/omegalib/examples/syr2k
+++ /dev/null
@@ -1,17 +0,0 @@
-# This example of code generation comes from
-# "Access Normalization: Loop Restructuring for NUMA Compilers"
-# by Wei Li and Keshav Pingali
-# Cornell Tech. report TR 92-1278
-
-symbolic n,b;
-
-IS10 := {[i,j,k] : 1 <= i <= j <= n && j <= i+2b-2
- && i-b+1,j-b+1,1 <= k <= i+b-1,j+b-1,n};
-T10 := {[i,j,k] -> [j-i+1,k-j,k]};
-
-known := {[*,*,*] : 1 <= b <= n};
-
-codegen T10:IS10;
-codegen T10:IS10 given known;
-codegen T10:IS10;
-codegen T10:IS10 given known;