Re: graphite loop optimizer - C examples?

2012-07-30 Thread Richard Guenther
On Sun, Jul 29, 2012 at 7:33 PM, Gary Funck g...@intrepid.com wrote: I have been experimenting with the graphite optimizer, based on GCC trunk, and cloog-isl. I started with the attached simple C program, which has this basic structure. #define N 2 int a[N][N], b[N], c[N]; [...]

graphite loop optimizer - C examples?

2012-07-29 Thread Gary Funck
I have been experimenting with the graphite optimizer, based on GCC trunk, and cloog-isl. I started with the attached simple C program, which has this basic structure. #define N 2 int a[N][N], b[N], c[N]; [...] for (i = 0; i N; i++) { b[i] = i; c[i] = i + N; } for