Fix OPENBLAS_LOOPS assignment

This commit is contained in:
Martin Kroeker 2024-03-20 19:20:16 +01:00 committed by GitHub
parent 05d0438c25
commit ffcbaca167
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ int main(int argc, char *argv[]){
double time1, time2, timeg1,timeg2; double time1, time2, timeg1,timeg2;
char *p; char *p;
if ((p = getenv("OPENBLAS_LOOPS"))) loops=*p; if ((p = getenv("OPENBLAS_LOOPS"))) loops=atoi(p);
argc--;argv++; argc--;argv++;