Browse Source

Fix zero element GEMV test.

tags/v0.3.29
Chip Kerchner 1 year ago
parent
commit
89702e1f4a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/compare_sgemm_sbgemm.c

+ 1
- 1
test/compare_sgemm_sbgemm.c 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));


Loading…
Cancel
Save