Browse Source

Fix unit test to start at 1 instead of 0 - since malloc zero bytes fails on some systems.

tags/v0.3.29
Chip Kerchner 1 year ago
parent
commit
b1802f4dc8
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

@@ -96,7 +96,7 @@ main (int argc, char *argv[])
char transA = 'N', transB = 'N';
float alpha = 1.0, beta = 0.0;

for (x = 0; x <= loop; x++)
for (x = 1; x <= loop; x++)
{
if ((x > 100) && (x != SBGEMM_LARGEST)) continue;
m = k = n = x;


Loading…
Cancel
Save