<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size: 12pt; color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif, "EmojiFont", "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols;" dir="ltr">
<div>Hi, <br>
<br>
<p>Thank you all for your answers. <br>
I have tried your suggestions and here is what I found. <br>
Barry you were right about the first case. But in the second case, I am not using a Schur fieldsplit but a multiplicative fieldsplit : -fieldsplit_TEBV_fieldsplit_EBV_pc_type fieldsplit -fieldsplit_TEBV_fieldsplit_EBV_pc_fieldsplit_type multiplicative
<br>
<br>
So, there should not be any Schur complement approximation Sp. <br>
<br>
When I ran a test with -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_ksp_view_pre -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_ksp_error_if_not_converged, I got this error:
<br>
</p>
<p><br>
</p>
<div>    0 SNES Function norm 6.368031218939e-02 <br>
      0 KSP Residual norm 6.368031218939e-02 <br>
      Linear fieldsplit_ni_ solve converged due to CONVERGED_ATOL iterations 0<br>
        Linear fieldsplit_TEBV_fieldsplit_tau_ solve converged due to CONVERGED_RTOL iterations 1<br>
          Linear fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_EP_ solve converged due to CONVERGED_RTOL iterations 3<br>
[0]PETSC ERROR: --------------------- Error Message --------------------------------------------------------------<br>
[0]PETSC ERROR: Zero pivot in LU factorization: https://petsc.org/release/faq/#zeropivot<br>
[0]PETSC ERROR: Zero pivot in row 1658<br>
[0]PETSC ERROR: See https://petsc.org/release/faq/ for trouble shooting.<br>
[0]PETSC ERROR: Petsc Development GIT revision: v3.16.3-751-g2f43bd9bc3  GIT Date: 2022-01-26 22:34:02 -0600<br>
[0]PETSC ERROR: ./main on a macx named pn2032683.lanl.gov by zjorti Fri Jun 10 16:17:35 2022<br>
[0]PETSC ERROR: Configure options PETSC_ARCH=macx --with-fc=0 --with-mpi-dir=/Users/zjorti/.brew --download-hypre --with-debugging=0 --with-cxx-dialect=C++11 --download-superlu_dist --download-parmetis --download-metis --download-ptscotch --download-cmake</div>
<br>
<br>
<p></p>
<p>Then I tried this flag -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_ksp_view_pmat binary:BVmat:binary_matlab and checked the resulting matrix in Matlab.
<br>
For Matlab, this is a full rank matrix, and the LU factorization there was carried out without any issues.</p>
<p>I also outputted the BV block directly from the Jacobian matrix. <br>
Once again, according to Matlab, it is a full rank matrix and it computes the LU factorization without any problem.
</p>
</div>
<br>
<br>
<div style="color: rgb(0, 0, 0);">
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" face="Calibri, sans-serif" color="#000000"><b>From:</b> Barry Smith <bsmith@petsc.dev><br>
<b>Sent:</b> Friday, June 10, 2022 7:32 AM<br>
<b>To:</b> Jorti, Zakariae<br>
<b>Cc:</b> petsc-users@mcs.anl.gov; Tang, Xianzhu<br>
<b>Subject:</b> [EXTERNAL] Re: [petsc-users] Question about SuperLU</font>
<div> </div>
</div>
<div>
<div class=""><br class="">
</div>
  It is difficult to tell exactly how the preconditioner is being formed with the information below it looks like in the 
<div class=""><br class="">
</div>
<div class="">first case: the original B diagonal block and V diagonal block of the matrix are being factored separately with SuperLU_DIST </div>
<div class=""><br class="">
</div>
<div class="">second case: the B block is factored with SuperLU_DIST and an explicit approximation to a Schur complement of the V block (Schur complement on eliminating the B block) is formed using "Preconditioner for the Schur complement formed from Sp, an
 assembled approximation to S, which uses A00's %sdiagonal's inverse" (this is the printout from a KSPView() for this part of the preconditioner). </div>
<div class=""><br class="">
</div>
<div class="">  My guess is you have a "Stokes"-like problem where the V block is identically 0 so, of course, the SuperLU_DIST will fail on it. But the approximation of the Schur complement onto that block is not singular so SuperLU_DIST has no trouble. If
 I am wrong and the V block is not identically 0 then it may be singular (or possibly, but less likely just badly order) so that SuperLU_DIST encounters a zero pivot.</div>
<div class=""><br class="">
</div>
<div class="">  You can run with -ksp_view_pre to have the KSP print the KSP solver algorithm details BEFORE the linear solve (hence they would get printed despite your failed solve). That would be useful to see exactly what your preconditioner is.</div>
<div class=""><br class="">
</div>
<div class="">   You can use -ksp_view_pmat (with appropriate prefix) to display the matrix that is going to be factored. Thus you can quickly verify what V is.</div>
<div class=""><br class="">
</div>
<div class="">  If you run with -ksp_error_if_not_converged then the solver will stop exactly when the zero pivot is encountered; this would include some information from SuperLU_DIST which might include the row number etc. </div>
<div class=""><br class="">
</div>
<div class="">  Notes on PETSc improvements needed. </div>
<div class=""><br class="">
</div>
<div class="">1) The man page for KSPCheckSolve() is terribly misleading</div>
<div class=""><br class="">
</div>
<div class="">2) It would be nice to have a view that displayed the nested fieldsplit preconditioners more clearly</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
<div><br class="">
<blockquote type="cite" class="">
<div class="">On Jun 9, 2022, at 5:19 PM, Jorti, Zakariae via petsc-users <<a href="mailto:petsc-users@mcs.anl.gov" class="">petsc-users@mcs.anl.gov</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div id="divtagdefaultwrapper" dir="ltr" class="" style="font-style: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none; font-size: 12pt; font-family: Calibri, Helvetica, sans-serif, "EmojiFont", "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols;">
<p class="" style="margin-top:0px; margin-bottom:0px"></p>
<div class="">Hi,<span class="Apple-converted-space"> </span><br class="">
<br class="">
I am solving non-linear problem that has 5 unknowns {ni, T, E, B, V}, and for the preconditioning part, I am using a FieldSplit preconditioner. At the last fieldsplit/level, we are left with a {B,V} block that tried to precondition in 2 different ways:<span class="Apple-converted-space"> </span><br class="">
a) SuperLU:<span class="Apple-converted-space"> </span><br class="">
-fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_ksp_type preonly -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_pc_type lu -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_pc_factor_mat_solver_type superlu_dist  <br class="">
b) a Schur-based fieldsplit preconditioner that uses SuperLU for both V and B blocks:<br class="">
-fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_ksp_type gmres -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_pc_type fieldsplit -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_pc_fieldsplit_type schur -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_pc_fieldsplit_schur_precondition
 selfp -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_fieldsplit_B_ksp_type preonly -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_fieldsplit_B_pc_type lu -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_fieldsplit_B_pc_factor_mat_solver_type superlu_dist -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_fieldsplit_V_ksp_type
 preonly -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_fieldsplit_V_pc_type lu -fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_fieldsplit_V_pc_factor_mat_solver_type superlu_dist<br class="">
<br class="">
Option a) yields the following error:<span class="Apple-converted-space"> </span><br class="">
"     Linear fieldsplit_ni_ solve converged due to CONVERGED_ATOL iterations 0<br class="">
        Linear fieldsplit_TEBV_fieldsplit_tau_ solve converged due to CONVERGED_RTOL iterations 1<br class="">
          Linear fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_EP_ solve converged due to CONVERGED_RTOL iterations 5<br class="">
          Linear fieldsplit_TEBV_fieldsplit_EBV_fieldsplit_BV_ solve did not converge due to DIVERGED_PC_FAILED iterations 0<br class="">
                         PC failed due to FACTOR_NUMERIC_ZEROPIVOT "<span class="Apple-converted-space"> </span><br class="">
whereas options b) seems to be working well.<span class="Apple-converted-space"> </span><br class="">
Is it possible that the SuperLU on the {V,B} block uses a reordering that introduces a zero pivot or could there be another explanation for this error?</div>
<br class="">
Many thanks.<span class="Apple-converted-space"> </span><br class="">
Best,<br class="">
<br class="">
Zakariae<span class="Apple-converted-space"> </span></div>
</div>
</blockquote>
</div>
<br class="">
</div>
</div>
</div>
</div>
</body>
</html>