<div dir="ltr"><span lang="en"><span><span>OK, I see.</span></span><span><span> </span></span></span><div><span lang="en"><span><span><br></span></span></span></div><div><span lang="en"><span><span>Thank you very much for the quick response and explanation.</span></span></span></div><div><span lang="en"><span><span><br></span></span></span></div><div><span lang="en"><span><span>Regards.</span></span></span></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">El mar, 4 mar 2025 a la(s) 1:27 p.m., Jed Brown (<a href="mailto:jed@jedbrown.org" target="_blank">jed@jedbrown.org</a>) escribió:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Yup, this is expected for direct solvers: numeric factorization for a 3D problem scales as O(n^2) while solving with the factors is only O(n^{4/3}). So you expect it to be slow to factor and fast to solve.<br>
<br>
Iterative methods with good preconditioners can be O(n), and tend to be the choice for large problems any time they can be sufficiently robust (which is both a science and an art, but is available for many problem classes).<br>
<br>
Emmanuel Ayala <<a href="mailto:juaneah@gmail.com" target="_blank">juaneah@gmail.com</a>> writes:<br>
<br>
> Hello everyone.<br>
><br>
> I'm trying to solve a linear system (which comes from 3D FEM with<br>
> structured DM mesh) with a direct solver. I configured petsc installation<br>
> with mumps (–download-mumps –download-scalapack –download-parmetis<br>
> –download-metis, --download-hwloc, without ptscotch) and I have the<br>
> 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);<br>
> 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<br>
> -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( )<br>
> takes too much time to be completed. MatCholeskyFactorSymbolic() and<br>
> MatSolve() are very fast. The test uses a square K matrix of 700k dofs, and<br>
> the MatCholeskyFactorNumeric() takes around 14 minutes, while an iterative<br>
> solver (KSPCG/PCJACOBI) takes 5 seconds to get the solution. Any<br>
> suggestions?<br>
><br>
> Thanks in advance.<br>
</blockquote></div>