<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Menlo;
        panose-1:2 11 6 9 3 8 4 2 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
p.p1, li.p1, div.p1
        {mso-style-name:p1;
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:8.5pt;
        font-family:Menlo;
        color:black;}
span.s1
        {mso-style-name:s1;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style>
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal"><span style="color:black">Hi,<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">I am doing calculations with version 3.12.0 of PETSc.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">Using the finite-element method, I solve the Maxwell equations on the interior of a 3D domain, coupled with boundary condition auxiliary equations on the boundary of the domain. The auxiliary equations employ auxiliary
 variables g.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">For ease of implementation of element matrix assembly, the auxiliary variables g are defined on the entire domain. However, only the basis functions for g with nonzero value at the boundary give nonzero entries
 in the system matrix.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">The element matrices hence have the structure<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">[ A B; C D]<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">at the boundary.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">In the interior the element matrices have the structure<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">[A 0; 0 0].<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">The degrees of freedom in the system matrix can be ordered by element [u_e1 g_e1 u_e2 g_e2 …] or by parallel process [u_p1 g_p1 u_p2 g_p2 …].<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">To solve the system matrix, I need to filter out zero rows and columns:<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">error = MatFindNonzeroRows(stiffnessMatrix, &nonzeroRows);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">CHKERRABORT(PETSC_COMM_WORLD, error);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">error = MatCreateSubMatrix(stiffnessMatrix, nonzeroRows, nonzeroRows, MAT_INITIAL_MATRIX, &stiffnessMatrixSubMatrix);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">CHKERRABORT(PETSC_COMM_WORLD, error);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">I solve the system matrix in parallel on multiple nodes connected with InfiniBand.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">The problem is that the MUMPS solver frequently (nondeterministically) hangs during KSPSolve() (after KSPSetUp() is completed).<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">Running with the options -ksp_view and -info the last printed statement is:<o:p></o:p></span></p>
<p class="p1"><span class="s1">[0] VecScatterCreate_SF(): Using StarForest for vector scatter</span><o:p></o:p></p>
<p class="MsoNormal"><span style="color:black">In the calculations where the program does not hang, the calculated solution is correct. <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="color:black">The problem doesn’t occur for calculations on a single node, or for calculations with the SuperLU solver (but SuperLU will not allow calculations that are as large).<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">The problem also doesn’t seem to occur for small problems.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">The problem doesn’t occur either when I put ones on the diagonal, but this is computationally expensive:<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">error = MatFindZeroRows(stiffnessMatrix, &zeroRows);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">CHKERRABORT(PETSC_COMM_WORLD, error);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">error = MatZeroRowsColumnsIS(stiffnessMatrix, zeroRows, diagEntry, PETSC_IGNORE, PETSC_IGNORE);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">CHKERRABORT(PETSC_COMM_WORLD, error);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">Would you have any ideas on what I could check?<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black"> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">Best regards,<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:black">Sjoerd<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt"><o:p> </o:p></span></p>
</div>
</body>
</html>