Hi Fredrik,<br>If I understand correctly, I have the same issue as what you have here.<br><br>I do not have the code yet(It is also depends on how your store your matrix data.).  But I can forward Barry&#39;s idea to you.  Hope this is helpful to you.<br>
<br>Yan,<br>
<br>     Simply read through the ASCII file(s) twice. The first time
count the number of blocks per row, then preallocate then read through
the ASCII file again reading and setting the values. This will be very
fast.<br><font color="#888888">
<br>
   Barry</font><div><span id="q_123d82b9b905eb29_2" class="h4">- Hide quoted text -</span></div><br>
<br>
On Sep 20, 2009, at 10:20 AM, Ryan Yan wrote:<br>
<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi All,<br>
I have a large size application. Mesh size is 30000 nodes, with dof 25
on each vertex. And it&#39;s 3d unstructured,  Tet, and Hex mesh. In the
following I will denote blksize=25<br>
<br>
I am testing how to build up a PETSc matrix object quick and fast.<br>
<br>
The data I have is Block Compressed Sparse Row(BCSR) files. And my objective is to read BCSR files and generate PETSc Binaries<br>
<br>
Firstly, I choose the MATMPIAIJ, I opened the BCSR data files on each
processor, and set up the preallocation use MatMPIAIJSetPreallocation(A,blksize,PETSC_NULL,blksize,PETSC_NULL);
The reason why I choose 25 as the number for d_nz and o_nz is that I do
not have access to the ordering of the vertices. So it&#39;s the worst case
set up, and it takes about 7 minutes on 30 MIPS node(180 processors) to
write the output into PETSc binaries.<br>
<br>
Secondly, I choose the MatMPIBAIJ, and same procedure as above, but also set up MatMPIBAIJSetPreallocation(A,blksize,blksize,PETSC_NULL,blksize,PETSC_NULL),
here blksize = 25 and it&#39;s also the worst case; This experiments takes
forever and could not generate the PETSc binaries.<br>
<br>
I guess the reason why it takes so long in the MATMPIBAIJ case is that
I did not set up the preallocation accurately. Alougth I think the
preallocation is also not accurate in the MATMPIAIJ case, but it seems
like the preallocation effect is not as serious as for the MPIBAIJ.
Correct me please, if there are other reasons.<br>
<br>
Can I anyone please give a hint on how to set up the preallocation
right for a unstructured mesh without knowing the mesh ordering?<br>
<br>
Thank you very much in advance,<br>
<br>
Yan<br>
</blockquote>
<br><br><br><br><div class="gmail_quote">On Mon, Sep 21, 2009 at 4:24 PM, Fredrik Bengzon <span dir="ltr">&lt;<a href="mailto:fredrik.bengzon@math.umu.se">fredrik.bengzon@math.umu.se</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br>
This is probably the wrong forum to ask, but does anyone have a piece of code for computing the correct ndnz and nodnz vectors needed for assembly of the stiffness (MPIAIJ) matrix on an unstructured tetrahedral mesh given the node-to-element adjacency?<br>

Thanks,<br><font color="#888888">
Fredrik<br>
<br>
</font></blockquote></div><br>