Fix unit test to start at 1 instead of 0 - since malloc zero bytes fails on some systems.
This commit is contained in:
parent
eba8615c11
commit
b1802f4dc8
|
@ -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…
Reference in New Issue