<div class="gmail_quote">On Fri, Sep 23, 2011 at 13:35, khalid ashraf <span dir="ltr">&lt;<a href="mailto:khalid_eee@yahoo.com">khalid_eee@yahoo.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div>Hi, I have a vector defined on a 3D DA of size ~1000X1000X30. I run the program on ~4000 processors. </div><div>After doing the calculations, print the vector in vtk format. I need to print about ~10 times at different time steps.</div>
<div>The printing takes about 3 hours. Is there a way to reduce the time required to print parallel vector printing.</div></blockquote><div><br></div><div>The VTK ASCII format is a horrible parallel format. One reliable option if you like the VTK tool chain is to write a &quot;parallel&quot; VTK XML format with binary appended data. You can also write an HDF5 file and either provide your own reader for whatever visualization software you are using or write an XDMF file to inform the reader of what to find where.</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><br></div><div>I am trying to average over some blocks of grid points and represent the data with a smaller sized vector defined on a smaller 3D DA. One thing I am not clear is that how to get the same layout for the large and smaller DA, so that all the calculations are local when doing the averaging. Could you please provide any guidance ?</div>
</blockquote></div><br><div>See the lx,ly,lz parameters to DMDACreate3d().</div><div><br></div><div><a href="http://www.mcs.anl.gov/petsc/petsc-as/snapshots/petsc-dev/docs/manualpages/DM/DMDACreate3d.html">http://www.mcs.anl.gov/petsc/petsc-as/snapshots/petsc-dev/docs/manualpages/DM/DMDACreate3d.html</a></div>