<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: Times New Roman; font-size: 12pt; color: #000000'><br><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit; -x-system-font: none;" valign="top"><font size="4"><span style="font-family: arial,helvetica,sans-serif;">Are you doing substructuring yourself or&nbsp; just using petsc parallel solver ?</span></font><br><br><font size="3"><span style="font-family: times new roman,new york,times,serif;">I am not doing any substructuring, however, I am using the "-mat_partitioning_type parmetis" option to divide the geometry. I then assemble the global stiffness matrix and global load vector and use petsc parallel solver.<br><br>Thanks<br>Irfan<br><br><br><br></span></font>--- On <b>Mon, 1/26/09, Khan, Irfan <i>&lt;irfan.khan@gatech.edu&gt;</i></b> wrote:<br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;">From: Khan, Irfan &lt;irfan.khan@gatech.edu&gt;<br>Subject: Re: parallel solvers and matrix structure<br>To: "PETSc users list" &lt;petsc-users@mcs.anl.gov&gt;<br>Date: Monday, January 26, 2009, 12:04 AM<br><br><pre>Thanks for the quick and helpful suggestions. I have used MatSetOptions() using<br>MAT_IGNORE_ZERO_ENTRIES with -pc_type sor. This gives me the same Stiffness<br>matrix in both cases (with and without excluding zero entries). Further the<br>results are the same, including the number of iterations.<br><br>However, the number of iterations to convergence is 70. Earlier I used to
 use<br>PCASM with KSPCG. This required 17 iterations. Barry mentioned<br>"spooles" with pc_type cholesky. But I am skeptical about its performs<br>on systems with over a million degrees of freedom. My matrices are positive<br>definite, thus CG may be ideally suited. But I am not sure what kind of<br>preconditioner would best suit in parallel. <br><br>Any suggestions on preconditioner-solver combinations for very large (1-10<br>million dof) positive definite systems?<br><br>Thanks again<br>Best Regards<br>Irfan<br><br><br>----- Original Message -----<br>From: "Barry Smith" &lt;bsmith@mcs.anl.gov&gt;<br>To: "PETSc users list" &lt;petsc-users@mcs.anl.gov&gt;<br>Sent: Sunday, January 25, 2009 9:42:42 PM GMT -05:00 US/Canada Eastern<br>Subject: Re: parallel solvers and matrix structure<br><br><br>On Jan 25, 2009, at 8:19 PM, Khan, Irfan wrote:<br><br>&gt; Dear Petsc team<br>&gt;<br>&gt; Firstly, thanks for developing PETSc. I have been using it to  <br>&gt;
 parallelize a linear finite element code to use with a parallel  <br>&gt; lattice Boltzmann code. It has helped me a lot untill now.<br>&gt;<br>&gt; I have some questions about the way the parallel solvers handles  <br>&gt; matrices with varying zeros in the matrix.<br>&gt;<br>&gt; I have found that the more MatSetValue() commands I use in my code  <br>&gt; the slower it gets. Therefore I initialize the parallel Stiffness  <br>&gt; matrix to 0.0.<br><br>     I don't know what you mean by this. You should NOT call  <br>MatZeroEntries() on the matrix initially. This will destroy your  <br>preallocation information.<br>Call MatZeroEntries() after you have filled it up and used it, when  <br>you are ready to start again.<br><br>&gt; I then fill in the values using an "if" conditions to eliminate<br>zero  <br>&gt; entries into the parallel Stiffness matrix. This reduces the number  <br>&gt; of times MatSetValue() is called greatly (5-15 times). I also 
 <br>&gt; approximate the number of non-zero entries into the parallel matrix,  <br>&gt; that I create using MatCreateMPIAIJ. I have attached outputs of  <br>&gt; running my code with "-info"; one with the "if"<br>condition and the  <br>&gt; other without the conditions (at the end of the email).<br><br>    If you are using the SeqAIJ or MPIAIJ matrices then you can simply  <br>call MatSetOption(mat,MAT_IGNORE_ZERO_ENTRIES)<br>and it will not put in those locations with zero value.<br><br><br>&gt;<br>&gt;<br>&gt; I have also compared the matrices generated by using the "if"  <br>&gt; condition and the one generated without the "if" condition. They<br>are  <br>&gt; the same except for the extra zero entries in the later case. But  <br>&gt; what I realize is that during solving, the matrix generated with the  <br>&gt; "if" condition is not converging while the matrix generated<br>without  <br>&gt; the "if" conditions converges in 17 iterations. I use
 KSPCG.<br><br>   First run both cases with -pc_type lu and confirm that they both  <br>produce the same solution to the linear system (on one process).<br><br>   Also confirm that the matrix is symmetric positive definite so you  <br>can use CG.<br><br>    The reason for the difference in converging is because the default  <br>solver that PETSc uses is ILU(0). The "quality" of an ILU  <br>preconditioner depends on the<br>"nonzero" structure of the matrix, the more "nonzero"<br>locations the  <br>more likely there will be convergence and it will be faster. For ILU a  <br>zero in a location is different<br>than not having that location at all. Likely you want to use a better  <br>preconditioner; what about -pc_type sor? For moderate size problems,  <br>say &lt; 100,000 you may<br>want to use Cholesky direct solver. In parallel run config/ <br>configure.py --download-spooles then run the code with -pc_type  <br>cholesky -pc_factor_mat_solver_package
 spooles<br><br><br>    Barry<br><br>&gt;<br>&gt;<br>&gt; It would help me a lot if I can get some suggestions on how to use  <br>&gt; MatSetValue() optimally, the reason for KSPCG failing to converge  <br>&gt; and if something can be done. Also any suggestions on if I should  <br>&gt; not use an "if" condition to enter values into the Stiffness<br>matrix  <br>&gt; to eliminate zero entries.<br>&gt;<br>&gt; I will be glad to send any other information if needed.<br>&gt;<br>&gt; Thanks in advance<br>&gt; Best Regards<br>&gt; Irfan<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; WITHOUT "IF" CONDITION<br>&gt; &lt; [0] MatStashScatterBegin_Private(): Mesg_to: 1: size: 3464<br>&gt; &lt; [0] MatAssemblyBegin_MPIAIJ(): Stash has 432 entries, uses 0  <br>&gt; mallocs.<br>&gt; &lt; [0] MatAssemblyEnd_SeqAIJ(): Matrix size: 66 X 66; storage space:  <br>&gt; 306 unneeded,4356 used<br>&gt; &lt; [0] MatAssemblyEnd_SeqAIJ(): Number of mallocs during  <br>&gt; MatSetValues()
 is 216<br>&gt; &lt; [0] MatAssemblyEnd_SeqAIJ(): Maximum nonzeros in any row is 66<br>&gt; &lt; [0] Mat_CheckInode(): Found 14 nodes of 66. Limit used: 5. Using  <br>&gt; Inode routines<br>&gt; &lt; [1] MatAssemblyEnd_SeqAIJ(): Matrix size: 66 X 66; storage space:  <br>&gt; 465 unneeded,3576 used<br>&gt; &lt; [1] MatAssemblyEnd_SeqAIJ(): Number of mallocs during  <br>&gt; MatSetValues() is 183<br>&gt; &lt; [1] MatAssemblyEnd_SeqAIJ(): Maximum nonzeros in any row is 66<br>&gt; &lt; [1] Mat_CheckInode(): Found 23 nodes of 66. Limit used: 5. Using  <br>&gt; Inode routines<br>&gt;<br>&gt; &lt; [1] MatAssemblyEnd_SeqAIJ(): Matrix size: 66 X 66; storage space:  <br>&gt; 243 unneeded,972 used<br>&gt; &lt; [1] MatAssemblyEnd_SeqAIJ(): Number of mallocs during  <br>&gt; MatSetValues() is 72<br>&gt; &lt; [1] MatAssemblyEnd_SeqAIJ(): Maximum nonzeros in any row is 66<br>&gt; &lt; [1] Mat_CheckCompressedRow(): Found the ratio (num_zerorows 12)/ <br>&gt;
 (num_localrows 66) &lt; 0.6. Do not use CompressedRow routines.<br>&gt;<br>&gt; &lt; [0] MatAssemblyEnd_SeqAIJ(): Matrix size: 66 X 66; storage space:  <br>&gt; 504 unneeded,1116 used<br>&gt; &lt; [0] MatAssemblyEnd_SeqAIJ(): Number of mallocs during  <br>&gt; MatSetValues() is 99<br>&gt; &lt; [0] MatAssemblyEnd_SeqAIJ(): Maximum nonzeros in any row is 66<br>&gt; &lt; [0] Mat_CheckCompressedRow(): Found the ratio (num_zerorows 0)/ <br>&gt; (num_localrows 66) &lt; 0.6. Do not use CompressedRow routines.<br>&gt;<br>&gt;<br>&gt; WITH "IF" CONDITION<br>&gt;&gt; [0] MatStashScatterBegin_Private(): Mesg_to: 1: size: 632<br>&gt;&gt; [0] MatAssemblyBegin_MPIAIJ(): Stash has 78 entries, uses 0 mallocs.<br>&gt;&gt; [0] MatAssemblyEnd_SeqAIJ(): Matrix size: 66 X 66; storage space:  <br>&gt;&gt; 118 unneeded,1304 used<br>&gt;&gt; [0] MatAssemblyEnd_SeqAIJ(): Number of mallocs during  <br>&gt;&gt; MatSetValues() is 0<br>&gt;&gt; [0] MatAssemblyEnd_SeqAIJ(): Maximum
 nonzeros in any row is 26<br>&gt;&gt; [0] Mat_CheckInode(): Found 66 nodes out of 66 rows. Not using  <br>&gt;&gt; Inode routines<br>&gt;&gt; [1] MatAssemblyEnd_SeqAIJ(): Matrix size: 66 X 66; storage space:  <br>&gt;&gt; 353 unneeded,1033 used<br>&gt;&gt; [1] MatAssemblyEnd_SeqAIJ(): Number of mallocs during  <br>&gt;&gt; MatSetValues() is 6<br>&gt;&gt; [1] MatAssemblyEnd_SeqAIJ(): Maximum nonzeros in any row is 26<br>&gt;&gt; [1] Mat_CheckInode(): Found 64 nodes out of 66 rows. Not using  <br>&gt;&gt; Inode routines<br>&gt;<br>&gt;&gt; [1] MatAssemblyEnd_SeqAIJ(): Matrix size: 66 X 24; storage space:  <br>&gt;&gt; 14 unneeded,121 used<br>&gt;&gt; [1] MatAssemblyEnd_SeqAIJ(): Number of mallocs during  <br>&gt;&gt; MatSetValues() is 0<br>&gt;&gt; [1] MatAssemblyEnd_SeqAIJ(): Maximum nonzeros in any row is 12<br>&gt;&gt; [1] Mat_CheckCompressedRow(): Found the ratio (num_zerorows 48)/ <br>&gt;&gt; (num_localrows 66) &gt; 0.6. Use CompressedRow
 routines.<br>&gt;<br>&gt;&gt; [0] MatAssemblyEnd_SeqAIJ(): Matrix size: 66 X 18; storage space:  <br>&gt;&gt; 14 unneeded,121 used<br>&gt;&gt; [0] MatAssemblyEnd_SeqAIJ(): Number of mallocs during  <br>&gt;&gt; MatSetValues() is 0<br>&gt;&gt; [0] MatAssemblyEnd_SeqAIJ(): Maximum nonzeros in any row is 11<br>&gt;&gt; [0] Mat_CheckCompressedRow(): Found the ratio (num_zerorows 42)/ <br>&gt;&gt; (num_localrows 66) &gt; 0.6. Use CompressedRow routines.<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br><br></pre></blockquote></td></tr></tbody></table><br>

      </div></body></html>