Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 2a8bedfe authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

clean code in core zgelqt

parent 32de9c8d
No related branches found
No related tags found
No related merge requests found
...@@ -156,22 +156,6 @@ int CORE_zgelqt(int M, int N, int IB, ...@@ -156,22 +156,6 @@ int CORE_zgelqt(int M, int N, int IB,
WORK, M-i-sb); WORK, M-i-sb);
} }
} }
// print the matrices
// int i1, i2;
// printf("\nV \n");
// for (i1=0; i1<M; i1++){
// for (i2=0; i2<N; i2++){
// printf("%f ", A[i1+i2*LDA]);
// }
// printf("\n");
// }
// printf("\nT \n");
// for (i1=0; i1<IB; i1++){
// for (i2=0; i2<N; i2++){
// printf("%f ", T[i1+i2*LDT]);
// }
// printf("\n");
// }
return MORSE_SUCCESS; return MORSE_SUCCESS;
} }
......
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