You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#define IND(x, y) ((x) + (y)*516)
float **a, **b, **c;
__attribute__((noinline)) void foo(
int I, int J, int K1, int K2, int L1, int L2) {
for (int i = 0; i < I; i++) {
float *v = c[i];
for (volatile int j = 0; j < J; j++) {
float *in = a[j];
float *out = b[j];
for (int l = L1; l < L2; l++) {
for (int k = K1; k < K2; k++) {
float sum = 0;
int offset = 0;
for (int m = -2; m <= 2; m++) {
for (int n = -2; n <= 2; n++, offset++)
sum += in[IND((k + n), (l + m))] * v[offset];
}
out[IND(k, l)] = sum;
}
}
}
}
}