Update gemm.c

This commit is contained in:
Martin Kroeker 2020-04-09 23:24:21 +02:00 committed by GitHub
parent 1d12a33a9d
commit ff23bd09f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ int main(int argc, char *argv[]){
TOUPPER(transb); TOUPPER(transb);
fprintf(stderr, "From : %3d To : %3d Step=%d : Transa=%c : Transb=%c\n", from, to, step, transa, transb); fprintf(stderr, "From : %3d To : %3d Step=%d : Transa=%c : Transb=%c\n", from, to, step, transa, transb);
fprintf(stderr,"OMP with %d threads\n",omp_get_max_threads()); fprintf(stderr,"OMP with %d threads on a build with NUM_BUFFERS=%d\n",omp_get_max_threads(),NUM_BUFFERS);
p = getenv("OPENBLAS_LOOPS"); p = getenv("OPENBLAS_LOOPS");
if ( p != NULL ) { if ( p != NULL ) {
loops = atoi(p); loops = atoi(p);