Skip to content

Commit

Permalink
GEMV tests don't like zero elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChipKerchner committed Aug 16, 2024
1 parent 868aa85 commit 77f85c7
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 @@ -203,7 +203,7 @@ main (int argc, char *argv[])
}

k = 1;
for (x = 0; x <= loop; x++)
for (x = 1; x <= loop; x++)
{
float *A = (float *)malloc_safe(x * x * sizeof(FLOAT));
float *B = (float *)malloc_safe(x * sizeof(FLOAT));
Expand Down

0 comments on commit 77f85c7

Please sign in to comment.