Skip to content

Commit

Permalink
Fix OPENBLAS_LOOPS assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Mar 20, 2024
1 parent b4a1153 commit 05d0438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/getri.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,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\n", from, to, step);

Expand Down

0 comments on commit 05d0438

Please sign in to comment.