mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-16 02:37:42 +01:00
* 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.
10 lines
268 B
C
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];
|
|
}
|
|
}
|
|
}
|