blob: 93972d79ed7d11291a8e86855e7704c35f30d83c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
void matmul_i1 ()
{
int *abase;
int aystride;
int x, n, count, xcount;
int *dest_y;
int *abase_n;
for (n = 0; n < count; n++)
{
abase_n = abase + n * aystride;
for (x = 0; x < xcount; x++)
dest_y[x] += abase_n[x];
}
}
|