From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59804) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gS5pc-00016Y-2G for guix-patches@gnu.org; Wed, 28 Nov 2018 14:49:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gS5pX-0004eI-4n for guix-patches@gnu.org; Wed, 28 Nov 2018 14:49:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:49543) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gS5pW-0004dV-5j for guix-patches@gnu.org; Wed, 28 Nov 2018 14:49:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gS5pW-0007Jj-1b for guix-patches@gnu.org; Wed, 28 Nov 2018 14:49:02 -0500 Subject: [bug#33545] [PATCH 1/2] gnu: petsc-openmpi: Configure with support for HYPRE preconditioner. References: <1543434150-32152-1-git-send-email-pgarlick@tourbillion-technology.com> In-Reply-To: <1543434150-32152-1-git-send-email-pgarlick@tourbillion-technology.com> Resent-Message-ID: From: Paul Garlick Date: Wed, 28 Nov 2018 19:48:19 +0000 Message-Id: <1543434500-32200-1-git-send-email-pgarlick@tourbillion-technology.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33545@debbugs.gnu.org Cc: Paul Garlick * gnu/packages/maths.scm (petsc-openmpi)[inputs]: Add hypre-openmpi. [arguments]: Add 'with-hypre=1' flag. --- gnu/packages/maths.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 0cf8916..85af458 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1767,6 +1767,7 @@ scientific applications modeled by partial differential equations.") (name "petsc-openmpi") (inputs `(("hdf5" ,hdf5-parallel-openmpi) + ("hypre" ,hypre-openmpi) ("metis" ,metis) ("mumps" ,mumps-openmpi) ("openmpi" ,openmpi) @@ -1776,7 +1777,8 @@ scientific applications modeled by partial differential equations.") (arguments (substitute-keyword-arguments (package-arguments petsc) ((#:configure-flags cf) - ``("--with-mpiexec=mpirun" + ``("--with-hypre=1" + "--with-mpiexec=mpirun" "--with-metis=1" "--with-mumps=1" "--with-scalapack=1" -- 1.8.3.1