Skip to content

Commit 799a0ea

Browse files
committed
bugfix in cholesky.c
1 parent ca63503 commit 799a0ea

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: benchmark/cholesky.c

+4
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,11 @@ static __inline double getmflops(int ratio, int m, double secs){
119119

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

122+
#ifndef COMPLEX
122123
char *trans[] = {"T", "N"};
124+
#else
125+
char *trans[] = {"C", "N"};
126+
#endif
123127
char *uplo[] = {"U", "L"};
124128
FLOAT alpha[] = {1.0, 0.0};
125129
FLOAT beta [] = {0.0, 0.0};

0 commit comments

Comments
 (0)