On Thu, 17 Dec 2009, Michael Povolotskyi wrote: > Is it possible to tell to libmesh how do I want to distribute my mesh > over the CPUs?
Yes. The most general way to do so is to write your own Partitioner subclass (see the src/partitioner/ directory for both simple and complex examples), which does the sort of (re)partitioning you want in its _do_partition() method. Then reset the MeshBase::partitioner() AutoPtr to point to a new instance of your class before you load or build your mesh. --- Roy ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ Libmesh-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libmesh-users
