On Wed, 27 Aug 2014, Miguel Angel Salazar de Troya wrote: > Is there a command to collect the entire mesh in just one processor? > Something like a MPI_gather ? Maybe the > Parallel::Communicator::gather but with a std::vector of elements?
ParallelMesh::allgather() does what you want, but at that point the mesh is just a less efficient SerialMesh; unless you can drastically limit the part of the code where serialization is necessary you might as well use a SerialMesh to begin with. --- Roy ------------------------------------------------------------------------------ Slashdot TV. Video for Nerds. Stuff that matters. http://tv.slashdot.org/ _______________________________________________ Libmesh-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libmesh-users
