Skip to content

gdolle/hpddm

 
 

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 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. The preconditioners may be used with a variety of Krylov subspace methods (which all support right, left, and variable preconditioning):

How to use HPDDM?

HPDDM is a 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 preconditioners assembled by HPDDM are not algebraic, 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 list of available options can be found in this cheat sheet.

¹The latest versions of icpc and (this has been fixed since version 16.0.2.181) 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/type\* = nullptr/type* = (void*)0/g; s/static constexpr const char/const char/g' include/*.hpp examples/*.cpp.

TL;DR
Makefile

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, Python, and Fortran examples (just type make test_language with language = [cpp|c|python|fortran] if you want to try only one set of examples).

CMake toolchain

The library can be build using the crossplatform build tool cmake.

git clone https://github.com/hpddm/hpddm.git
cd hpddm
mkdir build
cmake ..

make
make test
make install

Some meta target are available (cpp,c,python,fortran,testsuite,benchmarks), for example

make testsuite # compile testsuite only.
make test      # run tests (ctest)

For debugging purpose, proceed as follows

cmake -DCMAKE_BUILD_TYPE=Debug .. make VERBOSE=1

Note: use  `-DCMAKE_BUILD_TYPE=Release` for all optimization (slower compilation).

#### May HPDDM be embedded inside C, Python, or Fortran codes?
Yes, as long as you have a modern C++ compiler (cf. the previous paragraph). With Python, [NumPy](http://www.numpy.org/) and [mpi4py](https://bitbucket.org/mpi4py/) must also be available.

#### Who is behind HPDDM?
If you need help or have questions regarding HPDDM, feel free to contact [Pierre Jolivet](http://jolivet.perso.enseeiht.fr/) or [Frédéric Nataf](https://www.ljll.math.upmc.fr/nataf/).

#### How to cite HPDDM?
If you use this software, please cite this [paper](http://dl.acm.org/citation.cfm?doid=2503210.2503212) and this [book](http://www.siam.org/books/ot144/), thank you.

#### Acknowledgments
[Centre National de la Recherche Scientifique](http://www.cnrs.fr/index.php), France  
[Institut de Recherche en Informatique de Toulouse](http://www.irit.fr/?lang=en), France  
[Eidgenössische Technische Hochschule Zürich](https://www.ethz.ch/), Switzerland  
[Université Joseph Fourier](https://www.ujf-grenoble.fr/?language=en), Grenoble, France  
[Université Pierre et Marie Curie](http://www.upmc.fr/), Paris, France  
[Inria](http://www.inria.fr/en/) Paris, France  
[Agence Nationale de la Recherche](http://www.agence-nationale-recherche.fr/), France  
[Partnership for Advanced Computing in Europe](http://www.prace-ri.eu/)  
[Grand Equipement National de Calcul Intensif](http://www.genci.fr/en), France  
[Fondation Sciences Mathématiques de Paris](http://www.sciencesmaths-paris.fr/en/), France

###### Collaborators/contributors
[Lea Conen](https://www.linkedin.com/in/lea-conen-789111a5)  
[Victorita Dolean](http://www-math.unice.fr/~dolean/Home.html)  
[Ryadh Haferssas](https://www.ljll.math.upmc.fr/~haferssas/)  
[Frédéric Hecht](https://www.ljll.math.upmc.fr/hecht/)  
[Christophe Prud'homme](http://www.prudhomm.org/)  
[Nicole Spillane](http://www.cmap.polytechnique.fr/~spillane/)  
Pierre-Henri Tournier

About

A framework for high-performance domain decomposition methods.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 87.9%
  • CMake 7.5%
  • Makefile 2.1%
  • Python 1.6%
  • C 0.5%
  • Fortran 0.2%
  • Shell 0.2%