<div dir="ltr"><br><div><div>Well, I just tested the configuration with <span style="font-family:monospace">--download-f2cblaslapack</span><span style="font-family:monospace"> </span><span style="font-family:monospace">--download-blis and the direct solver cholesky with mumps becomes 10x faster :D</span></div><br class="gmail-Apple-interchange-newline"></div><div><span style="font-family:monospace">Thanks!</span></div></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">El mar, 4 mar 2025 a la(s) 3:21 p.m., Emmanuel Ayala (<a href="mailto:juaneah@gmail.com">juaneah@gmail.com</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"><div dir="ltr"><div dir="ltr">Thanks for the notes.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">El mar, 4 mar 2025 a la(s) 2:22 p.m., Barry Smith (<a href="mailto:bsmith@petsc.dev" target="_blank">bsmith@petsc.dev</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"><br>
<br>
> On Mar 4, 2025, at 2:02 PM, Emmanuel Ayala <<a href="mailto:juaneah@gmail.com" target="_blank">juaneah@gmail.com</a>> wrote:<br>
> <br>
> 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>
<br>
Note 1)  these four lines of code above are not needed if you use are using KSPSolve to solve the system. The options below will trigger this. <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></blockquote><div>OK. I'm solving sepparetelly the direct solver and the iterative one.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
Note 2) it is imperative you use a good BLAS library and optimization when using mumps. Do not use --download-blaslapack (or friends) and use --with-debugging=0 in the configure option).<br></blockquote><div>Right. I configured it with --with-debugging=0 and --download-fblaslapack. <b>So, which is a good BLAS library?</b> from petsc: ...One can use <code><span>--download-f2cblaslapack</span> <span>--download-blis...</span></code></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
Note 3) If you are running sequentially (no MPI) then also ensure you have --with-openmp in your configure options and set an appropriate value for the number of OpenMP threads when you run your program.<br></blockquote><div>I'm running with MPI .</div><div><br></div><div>Regards.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
<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? <br>
> <br>
> Thanks in advance.<br>
<br>
</blockquote></div></div>
</blockquote></div>