GEMV tests don't like zero elements.

This commit is contained in:
Chip Kerchner
2024-08-16 11:15:32 -05:00
parent 868aa857bc
commit 77f85c7c00

View File

@@ -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));