mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-19 12:17:55 +01:00
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];
|
||
|
}
|
||
|
}
|
||
|
}
|