Fix OPENBLAS_LOOPS assignment

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

View File

@ -54,7 +54,7 @@ int main(int argc, char *argv[]){
int step = 1;
int loops = 1;
if ((p = getenv("OPENBLAS_LOOPS"))) loops=*p;
if ((p = getenv("OPENBLAS_LOOPS"))) loops=atoi(p);
double time1,timeg;