Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 81f76bdc authored by Mathieu Faverge's avatar Mathieu Faverge Committed by LISITO Alycia
Browse files

coreblas/ztslqt: Fix workspace leading dimension

parent 7deec7ee
No related branches found
No related tags found
1 merge request!301Fix issues detected with the upcoming lapack standard api tests
...@@ -202,7 +202,7 @@ int CORE_ztslqt(int M, int N, int IB, ...@@ -202,7 +202,7 @@ int CORE_ztslqt(int M, int N, int IB,
&A2[ii+sb], LDA2, &A2[ii+sb], LDA2,
&A2[ii], LDA2, &A2[ii], LDA2,
&T[LDT*ii], LDT, &T[LDT*ii], LDT,
WORK, LDA1); WORK, M);
} }
} }
return CHAMELEON_SUCCESS; return CHAMELEON_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