Skip to content

pascalfrey/hpddm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HPDDM — high-performance unified framework for domain decomposition methods Build Status

What is HPDDM ?

HPDDM is an efficient implementation of various domain decomposition methods (DDM) such as one- and two-level Restricted Additive Schwarz methods, the Finite Element Tearing and Interconnecting (FETI) method, and the Balancing Domain Decomposition (BDD) method. These methods can be enhanced with deflation vectors computed automatically by the framework using:

  • Generalized Eigenvalue problems on the Overlap (GenEO), an approach first introduced in a paper by Spillane et al., or
  • local Dirichlet-to-Neumann operators, an approach first introduced in a paper by Nataf et al. and recently revisited by Conen et al.

This code has been proven to be efficient for solving various elliptic problems such as scalar diffusion equations, the system of linear elasticity, but also frequency domain problems like the Helmholtz equation. A comparison with modern multigrid methods can be found in the thesis of Jolivet.

How to use HPDDM ?

HPDDM is a header-only library written in C++11 with MPI and OpenMP for parallelism. While its interface relies on plain old data objects, it requires a modern C++ compiler: g++ 4.7.2 and above, clang++ 3.3 and above, icpc 15.0.0.090 and above¹, or pgc++ 15.1 and above¹. HPDDM has to be linked against BLAS and LAPACK (as found in OpenBLAS, in the Accelerate framework on OS X, in IBM ESSL, or in Intel MKL) as well as a direct solver like MUMPS, SuiteSparse, MKL PARDISO, or PaStiX. Additionally, an eigenvalue solver is recommended. There is an existing interface to ARPACK. Other (eigen)solvers can be easily added using the existing interfaces.
For building robust two-level methods, an interface with a discretization kernel like FreeFem++ or Feel++ is also needed. It can then be used to provide, for example, elementary matrices, that the GenEO approach requires. As such HPDDM is not an algebraic solver, unless only looking at one-level methods. Note that for substructuring methods, this is more of a limitation of the mathematical approach than of HPDDM itself.
If you need to generate the documentation, you first have to retrieve NaturalDocs. Then, just type in the root of the repository NaturalDocs --input include --output HTML doc --project doc.

¹The latest versions of icpc and pgc++ are not able to compile C++11 properly, if you want to use these compilers, please apply the following patch to the headers of HPDDM sed -i\ '' 's/ nullptr>/ (void*)0>/g; s/static constexpr const char/const char/g' include/*.hpp.

TL;DR

Create a ./Makefile.inc by copying one from the folder ./Make.inc and adapt it to your platform. Type make test to run C++, C, and Python examples (just type make test_language with language = [cpp|c|python] if you want to try only one set of examples).

May HPDDM be embedded inside C or Python codes ?

Yes, as long as you have a modern C++ compiler (cf. the previous paragraph). With Python, NumPy and mpi4py must also be available.

Who is behind HPDDM ?

If you need help or have questions regarding HPDDM, feel free to contact Pierre Jolivet or Frédéric Nataf.

How to cite HPDDM ?

If you use this software, please cite this paper and this book, thank you.

Acknowledgments

Centre National de la Recherche Scientifique, France
Institut de Recherche en Informatique de Toulouse, France
Eidgenössische Technische Hochschule Zürich, Switzerland
Université Joseph Fourier, Grenoble, France
Université Pierre et Marie Curie, Paris, France
Inria Paris-Rocquencourt, France
Agence Nationale de la Recherche, France
Partnership for Advanced Computing in Europe
Fondation Sciences Mathématiques de Paris, France

Collaborators/contributors

Lea Conen
Victorita Dolean
Ryadh Haferssas
Frédéric Hecht
Christophe Prud'homme
Nicole Spillane
Pierre-Henri Tournier

About

A framework for high-performance domain decomposition methods.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 96.1%
  • Python 1.8%
  • Makefile 1.5%
  • C 0.6%