summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorPaul Garlick <pgarlick@tourbillion-technology.com>2018-11-28 19:48:19 +0000
committerLudovic Courtès <ludo@gnu.org>2018-12-04 10:58:50 +0100
commitaf5236739e2d73132e7ae4678030f0ae4356729c (patch)
treecbe6715d086ba012ee330bcac1a72507ca3785ef /gnu
parent7bc5657f8434de06d904c36f8960a1b1dddf10ae (diff)
gnu: petsc-openmpi: Configure with support for HYPRE preconditioner.
* gnu/packages/maths.scm (petsc-openmpi)[inputs]: Add hypre-openmpi. [arguments]: Add 'with-hypre=1' flag. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/maths.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index f1b5bb0646d..f88cede68a7 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1767,6 +1767,7 @@ scientific applications modeled by partial differential equations.")
1767 (name "petsc-openmpi") 1767 (name "petsc-openmpi")
1768 (inputs 1768 (inputs
1769 `(("hdf5" ,hdf5-parallel-openmpi) 1769 `(("hdf5" ,hdf5-parallel-openmpi)
1770 ("hypre" ,hypre-openmpi)
1770 ("metis" ,metis) 1771 ("metis" ,metis)
1771 ("mumps" ,mumps-openmpi) 1772 ("mumps" ,mumps-openmpi)
1772 ("openmpi" ,openmpi) 1773 ("openmpi" ,openmpi)
@@ -1776,7 +1777,8 @@ scientific applications modeled by partial differential equations.")
1776 (arguments 1777 (arguments
1777 (substitute-keyword-arguments (package-arguments petsc) 1778 (substitute-keyword-arguments (package-arguments petsc)
1778 ((#:configure-flags cf) 1779 ((#:configure-flags cf)
1779 ``("--with-mpiexec=mpirun" 1780 ``("--with-hypre=1"
1781 "--with-mpiexec=mpirun"
1780 "--with-metis=1" 1782 "--with-metis=1"
1781 "--with-mumps=1" 1783 "--with-mumps=1"
1782 "--with-scalapack=1" 1784 "--with-scalapack=1"