Jerome Duval 5873a060ca imported PPL 0.11.1 and CLooG 0.18.0.
* these are dependencies for gcc 4 Graphite engine build.
* CLooG 0.18.0 includes ISL 0.11.1 which is the backend that the build script enables.
* PPL is needed by GCC build even if it isn't the chosen backend.
2013-04-06 15:10:34 +02:00

10 lines
268 B
C

/* Generated from ./test/openscop/matmult.scop by CLooG 0.14.0-432-g5cf921d gmp bits in 0.01s. */
for (c2=0;c2<=N-1;c2++) {
for (c4=0;c4<=N-1;c4++) {
C[c2][c4] = 0.0;
for (c6=0;c6<=N-1;c6++) {
C[c2][c4] = C[c2][c4] + A[c2][c6] * B[c6][c4];
}
}
}