Browse Source

updated gemm.c

tags/v0.2.12^2
wernsaar 12 years ago
parent
commit
29125864b3
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      benchmark/gemm.c

+ 3
- 1
benchmark/gemm.c View File

@@ -142,7 +142,9 @@ int MAIN__(int argc, char *argv[]){
if (argc > 0) { to = MAX(atol(*argv), from); argc--; argv++;}
if (argc > 0) { step = atol(*argv); argc--; argv++;}

fprintf(stderr, "From : %3d To : %3d Step = %3d\n", from, to, step);
if ((p = getenv("OPENBLAS_TRANS"))) trans=*p;

fprintf(stderr, "From : %3d To : %3d Step=%d : Trans=%c\n", from, to, step, trans);

if (( a = (FLOAT *)malloc(sizeof(FLOAT) * to * to * COMPSIZE)) == NULL){
fprintf(stderr,"Out of Memory!!\n");exit(1);


Loading…
Cancel
Save