Skip to content

Commit

Permalink
Fix zero element GEMV test.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChipKerchner committed Aug 16, 2024
1 parent 77f85c7 commit 89702e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/compare_sgemm_sbgemm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 89702e1

Please sign in to comment.