<div dir="ltr">Hello everyone.<br><br>I'm trying to solve a linear system (which comes from 3D FEM with structured DM mesh) with a direct solver. I configured petsc installation with mumps (–download-mumps –download-scalapack –download-parmetis –download-metis, --download-hwloc, without ptscotch) and I have the following functions:<br><br>    // K is the stiffness matrix, assembly correctly<br>    // U is the solution vector<br>    // RHS is the right hand side of the linear equation<br>    <br>    Mat Kfactor;<br><br>    ierr = MatGetFactor(K,MATSOLVERMUMPS, MAT_FACTOR_CHOLESKY, &Kfactor); CHKERRQ(ierr);<br>    ierr = MatCholeskyFactorSymbolic(Kfactor,K,0,0); CHKERRQ(ierr);<br>    ierr = MatCholeskyFactorNumeric(Kfactor,K,0); CHKERRQ(ierr);<br>    ierr = MatSolve(Kfactor,RHS,U);<br>    <br>    and run with options: <br>        -pc_type cholesky -pc_factor_mat_solver_type mumps -mat_mumps_icntl_1 1 -mat_mumps_icntl_13 0 -mat_mumps_icntl_28 2 -mat_mumps_icntl_29 2 <br><br>PROBLEM:    <br>I got the correct solution, but the function MatCholeskyFactorNumeric( ) takes too much time to be completed. MatCholeskyFactorSymbolic() and MatSolve() are very fast. The test uses a square K matrix of 700k dofs, and the MatCholeskyFactorNumeric() takes around 14 minutes, while an iterative solver (KSPCG/PCJACOBI) takes 5 seconds to get the solution. Any suggestions? <div><br>Thanks in advance.</div></div>