Browse Source

Fix OPENBLAS_LOOPS assignment

tags/v0.3.27
Martin Kroeker GitHub 1 year ago
parent
commit
05d0438c25
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      benchmark/getri.c

+ 1
- 1
benchmark/getri.c View File

@@ -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);



Loading…
Cancel
Save