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

This commit is contained in:
Chip Kerchner 2024-08-16 09:51:37 -05:00
parent eba8615c11
commit b1802f4dc8
1 changed files with 1 additions and 1 deletions

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;