Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f477bf60 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Be more consistant with the documentation and prevent problem if kdwork changes for stricter arrays

parent 2279f49a
No related branches found
No related tags found
1 merge request!20Fix for the TPMQRT routine
This commit is part of merge request !20. Comments created here will be created in the context of that merge request.
......@@ -48,14 +48,14 @@ CUDA_ztpmqrt( MORSE_enum side, MORSE_enum trans,
n1 = N;
ldwork = IB;
ldworkc = M;
ws = IB * n1;
ws = ldwork * n1;
}
else {
m1 = M;
n1 = K;
ldwork = m1;
ldworkc = IB;
ws = IB * m1;
ws = ldwork * IB;
}
/* TS case */
......
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