Fix OPENBLAS_LOOPS assignment

This commit is contained in:
Martin Kroeker
2024-03-20 19:21:37 +01:00
committed by GitHub
parent ffcbaca167
commit fe39c891a6

View File

@@ -120,7 +120,7 @@ int main(int argc, char *argv[]){
if ((p = getenv("OPENBLAS_TEST"))) btest=*p;
if ((p = getenv("OPENBLAS_LOOPS"))) loops=*p;
if ((p = getenv("OPENBLAS_LOOPS"))) loops=atoi(p);
fprintf(stderr, "From : %3d To : %3d Step = %3d Uplo = %c\n", from, to, step,*uplo[uplos]);