Browse Source

bugfix in cholesky.c

tags/v0.2.11^2
wernsaar 12 years ago
parent
commit
799a0eabbd
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      benchmark/cholesky.c

+ 4
- 0
benchmark/cholesky.c View File

@@ -119,7 +119,11 @@ static __inline double getmflops(int ratio, int m, double secs){

int MAIN__(int argc, char *argv[]){

#ifndef COMPLEX
char *trans[] = {"T", "N"};
#else
char *trans[] = {"C", "N"};
#endif
char *uplo[] = {"U", "L"};
FLOAT alpha[] = {1.0, 0.0};
FLOAT beta [] = {0.0, 0.0};


Loading…
Cancel
Save