Fix zero element GEMV test.

This commit is contained in:
Chip Kerchner 2024-08-16 11:37:39 -05:00
parent 77f85c7c00
commit 89702e1f4a
1 changed files with 1 additions and 1 deletions

View File

@ -202,9 +202,9 @@ main (int argc, char *argv[])
return ret;
}
k = 1;
for (x = 1; x <= loop; x++)
{
k = (x == 0) ? 0 : 1;
float *A = (float *)malloc_safe(x * x * sizeof(FLOAT));
float *B = (float *)malloc_safe(x * sizeof(FLOAT));
float *C = (float *)malloc_safe(x * sizeof(FLOAT));