bugfix in cholesky.c

This commit is contained in:
wernsaar 2014-07-30 14:00:19 +02:00
parent ca63503e61
commit 799a0eabbd
1 changed files with 4 additions and 0 deletions

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};