Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a273b4aa authored by Mathieu Faverge's avatar Mathieu Faverge Committed by BOUCHERIE Raphael
Browse files

Use Chameleon_max instead of max

parent 12f41621
No related branches found
No related tags found
1 merge request!47Integration of hierarchicah householder reduction trees
...@@ -69,9 +69,9 @@ int testing_zgels_hqr(int argc, char **argv) ...@@ -69,9 +69,9 @@ int testing_zgels_hqr(int argc, char **argv)
int M = atoi(argv[0]); int M = atoi(argv[0]);
int N = atoi(argv[1]); int N = atoi(argv[1]);
int LDA = max( atoi(argv[2]), M ); int LDA = chameleon_max( atoi(argv[2]), M );
int NRHS = atoi(argv[3]); int NRHS = atoi(argv[3]);
int LDB = max( max( atoi(argv[4]), M ), N ); int LDB = chameleon_max( chameleon_max( atoi(argv[4]), M ), N );
int qr_a = atoi(argv[5]); int qr_a = atoi(argv[5]);
int qr_p = atoi(argv[6]); int qr_p = atoi(argv[6]);
int llvl = atoi(argv[7]); int llvl = atoi(argv[7]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment