Skip to content

Commit 77f85c7

Browse files
author
Chip Kerchner
committed
GEMV tests don't like zero elements.
1 parent 868aa85 commit 77f85c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/compare_sgemm_sbgemm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ main (int argc, char *argv[])
203203
}
204204

205205
k = 1;
206-
for (x = 0; x <= loop; x++)
206+
for (x = 1; x <= loop; x++)
207207
{
208208
float *A = (float *)malloc_safe(x * x * sizeof(FLOAT));
209209
float *B = (float *)malloc_safe(x * sizeof(FLOAT));

0 commit comments

Comments
 (0)