Mentions légales du service

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

Fix MatMat in spm.c

parent 16a181b1
No related branches found
No related tags found
No related merge requests found
......@@ -1109,17 +1109,17 @@ spmMatMat( pastix_trans_t trans,
}
switch (A->flttype) {
case PastixFloat:
rc = s_spmCSCMat( trans, alpha, espm, B, beta, C);
rc = s_spmCSCMatMat( trans, n, alpha, espm, B, ldb, beta, C, ldc );
break;
case PastixComplex32:
rc = c_spmCSCMat( trans, alpha, espm, B, beta, C);
rc = c_spmCSCMatMat( trans, n, alpha, espm, B, ldb, beta, C, ldc );
break;
case PastixComplex64:
rc = z_spmCSCMat( trans, alpha, espm, B, beta, C);
rc = z_spmCSCMatMat( trans, n, alpha, espm, B, ldb, beta, C, ldc );
break;
case PastixDouble:
default:
rc = d_spmCSCMat( trans, alpha, espm, B, beta, C);
rc = d_spmCSCMatMat( trans, n, alpha, espm, B, ldb, beta, C, ldc );
break;
}
......
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