PPL Logo
ParFUM - Parallel Framework for Unstructured Meshing

The ParFUM framework makes it easy to write adaptive parallel programs that utilize unstructured meshes. Programs can be written in Fortran90, C, or C++. ParFUM is the successor to FEM. ParFUM is designed to allow for mesh modification, including refinement and coarsening.

Using the ParFUM framework also allows you to take advantage of all the features of CHARM++, including run-time instrumented load balancing, performance monitoring and visualization, and checkpoint/restart, with no additional effort.

A parallel ParFUM application written using the ParFUM framework closely resembles a sequential program. The difference is that in the ParFUM framework, the user's main subroutine operates on one of the many "chunks" of the unstructured mesh. These chunks are created from the serial mesh using, for example, the Metis graph partitioning library.

The only other calls needed by an ParFUM framework program are to:

  • Register data fields that need to be communicated between chunks (for example, nodal attributes)
  • Trigger an "update" of these shared data fields across processors (for example, to share nodal forces before a position update)
  • Reduce a value across the machine (for example, to check convergence criteria or global energy)

The framework allows you to easily visualize the results of an ongoing simulation. See the NetFEM page for details.

The framework currently targets explicit codes; although some implicit solvers, such as the conjugate gradient method, can also be applied. We are working to add better support for parallel implicit solvers.
 

Software
The ParFUM framework is distributed as a library included with Charm++. Please download the source distribution from our CVS and install the ParFUM framework by specifying the target "LIBS" to the Charm++ build command. The 5.8 version of Charm++ does not contain ParFUM, so a more recent version is needed.

We will add a manual for ParFUM in the near future.

People
Papers
  • 05-14    Orion Lawlor, Sayantan Chakravorty, Terry Wilmarth, Nilesh Choudhury, Isaac Dooley, Gengbin Zheng, and Laxmikant Kale,  ParFUM: A Parallel Framework for Unstructured Meshes for Scalable Dynamic Physics Applications,  Engineering with Computers, Journal, 2006
  • 00-01    Milind A. Bhandarkar and L. V. Kale,  A Parallel Framework for Explicit FEM,  Proceedings of the International Conference on High Performance Computing (HiPC 2000), Lecture Notes in Computer Science, Vol 1970, Eds: M. Valero and V. K. Prasanna and S. Vajpeyam, Springer Verlag, December 2000, pp. 385-395.
  • 98-09    L. V. Kale,  Programming Languages for CSE: the state of the art,  IEEE Computational Science and Engineering
Related Links

This page maintained by Isaac Dooley. Back to the PPL Research Page