[vtkusers] Partitioning Data

Berk Geveci berk.geveci at kitware.com
Mon Dec 28 22:18:42 EST 2009


or the distributed data filter in VTK.

On Mon, Dec 28, 2009 at 5:57 PM, Dominik Szczerba <dominik at itis.ethz.ch> wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> I don't think this is intended to partition your mesh, or at least I
> would be highly (if positively) surprised.
>
> Do you not mean to partition a mesh for e.g. domain decomposition
> purposes or other parallel applications? Then metis or chaco is what you
> need here.
>
> Dominik
>
> Terry Jordan wrote:
>>
>> I am trying to partition a unstructured grid into 4 evenly sized
>> pieces.  Currently I am doing the following:
>>
>> vtkXMLPUnstructuredGridWriter *writer =
>> vtkXMLPUnstructuredGridWriter::New();
>> writer->SetInput( filteredGrid );
>> writer->SetFileName(vtkFilename);
>> writer->SetNumberOfPieces( 4 );
>> writer->SetStartPiece(0);
>> writer->SetEndPiece(3);
>> writer->Write();
>>
>> filteredGrid is a vtkUnstructuredGrid
>>
>> The result of this code is 4 copies of the data (1 pvtu and 4 vtu).
>> Each is identical to the original data.  What am I missing?  I am
>> running this code on a single cpu without the use of MPI.  Do I have to
>> use MPI?
>>
>> Thanks in advance.
>>
>>
>> ------------------------------------------------------------------------
>>
>> _______________________________________________
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.vtk.org/mailman/listinfo/vtkusers
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.9 (GNU/Linux)
>
> iEYEARECAAYFAks5N84ACgkQ/EBMh9bUuzL60wCg45gdE2GhJbZT9zztDLMJMRiX
> RGoAoNjFFwEpY9IfusrMv2YWiOj/mrEg
> =Rjc+
> -----END PGP SIGNATURE-----
> _______________________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ
>
> Follow this link to subscribe/unsubscribe:
> http://www.vtk.org/mailman/listinfo/vtkusers
>



More information about the vtkusers mailing list