From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 24 06:33:33 2018 Received: (at submit) by debbugs.gnu.org; 24 Sep 2018 10:33:33 +0000 Received: from localhost ([127.0.0.1]:51379 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4OBJ-00071s-5o for submit@debbugs.gnu.org; Mon, 24 Sep 2018 06:33:33 -0400 Received: from eggs.gnu.org ([208.118.235.92]:49167) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4OBH-00071e-D9 for submit@debbugs.gnu.org; Mon, 24 Sep 2018 06:33:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g4OBB-00086V-84 for submit@debbugs.gnu.org; Mon, 24 Sep 2018 06:33:26 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:38687) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g4OBB-00086N-4l for submit@debbugs.gnu.org; Mon, 24 Sep 2018 06:33:25 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g4OBA-0000tD-9T for guix-patches@gnu.org; Mon, 24 Sep 2018 06:33:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g4OB7-00084n-Lh for guix-patches@gnu.org; Mon, 24 Sep 2018 06:33:24 -0400 Received: from smtp.hosts.co.uk ([85.233.160.19]:62424) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g4OB7-00083B-Ev for guix-patches@gnu.org; Mon, 24 Sep 2018 06:33:21 -0400 Received: from [79.123.23.187] (helo=parkin.tourbillion-technology.com.com) by smtp.hosts.co.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim) (envelope-from ) id 1g4OB3-0003Cs-4e; Mon, 24 Sep 2018 11:33:17 +0100 From: Paul Garlick To: guix-patches@gnu.org Subject: [PATCH] gnu: Add petsc-mumps-openmpi. Date: Mon, 24 Sep 2018 11:32:44 +0100 Message-Id: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> X-Mailer: git-send-email 1.8.3.1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit Cc: Paul Garlick X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -6.0 (------) * gnu/packages/maths.scm (petsc-mumps-openmpi): New variable. --- gnu/packages/maths.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 736bac1..b2fff54 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1724,6 +1724,48 @@ scientific applications modeled by partial differential equations.") ,@(delete "--with-mpi=0" ,cf))))) (synopsis "Library to solve PDEs (with complex scalars and MPI support)"))) +(define-public petsc-mumps-openmpi + (package (inherit petsc-openmpi) + (name "petsc-mumps-openmpi") + (inputs + `(("metis" ,metis) + ("mumps" ,mumps-openmpi) + ("scalapack" ,scalapack) + ("scotch" ,pt-scotch) + ,@(package-inputs petsc-openmpi))) + (arguments + (substitute-keyword-arguments (package-arguments petsc-openmpi) + ((#:configure-flags cf) + ``(,(string-append "--with-metis-include=" + (assoc-ref %build-inputs "metis") "/include") + ,(string-append "--with-metis-lib=" + (assoc-ref %build-inputs "metis") "/lib/" + "libmetis.so") + ,(string-append "--with-mumps-include=" + (assoc-ref %build-inputs "mumps") "/include") + ,(string-append "--with-mumps-lib=[" + (assoc-ref %build-inputs "mumps") "/lib/" + "libdmumps.a," + "libzmumps.a," + "libsmumps.a," + "libcmumps.a," + "libmumps_common.a," + "libpord.a]") + ,(string-append "--with-scalapack-lib=" + (assoc-ref %build-inputs "scalapack") "/lib/" + "libscalapack.so") + ,(string-append "--with-ptscotch-include=" + (assoc-ref %build-inputs "scotch") "/include") + ,(string-append "--with-ptscotch-lib=[" + (assoc-ref %build-inputs "scotch") "/lib/" + "libesmumps.a," + "libscotch.a," + "libscotcherr.a," + "libptesmumps.a," + "libptscotch.a," + "libptscotcherr.a]") + ,@,cf)))) + (synopsis "Library to solve PDEs (with MUMPS and MPI support)"))) (define-public python-kiwisolver (package -- 1.8.3.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 24 08:33:54 2018 Received: (at 32818) by debbugs.gnu.org; 24 Sep 2018 12:33:54 +0000 Received: from localhost ([127.0.0.1]:51454 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4Q3m-0003qW-34 for submit@debbugs.gnu.org; Mon, 24 Sep 2018 08:33:54 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:51341) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4Q3k-0003qI-A1 for 32818@debbugs.gnu.org; Mon, 24 Sep 2018 08:33:52 -0400 X-IronPort-AV: E=Sophos;i="5.54,298,1534802400"; d="scan'208";a="279947599" Received: from unknown (HELO ribbon) ([193.50.110.247]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/AES256-GCM-SHA384; 24 Sep 2018 14:33:45 +0200 From: ludovic.courtes@inria.fr (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Paul Garlick Subject: Re: [bug#32818] [PATCH] gnu: Add petsc-mumps-openmpi. References: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> Date: Mon, 24 Sep 2018 14:33:45 +0200 In-Reply-To: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> (Paul Garlick's message of "Mon, 24 Sep 2018 11:32:44 +0100") Message-ID: <871s9jvzva.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 32818 Cc: 32818@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -6.0 (------) Hi, Paul Garlick skribis: > * gnu/packages/maths.scm (petsc-mumps-openmpi): New variable. On current master (e72702475da2379e10ca09e724e10a9bceceef1b), it fails like this: --8<---------------cut here---------------start------------->8--- TESTING: checkDependencies from config.packages.PTScotch(/tmp/guix-build-pe= tsc-mumps-openmpi-3.9.3.drv-0/petsc-3.9.3/config/BuildSystem/config/package= .py:721) TESTING: configureLibrary from config.packages.PTScotch(/tmp/guix-build-pet= sc-mumps-openmpi-3.9.3.drv-0/petsc-3.9.3/config/BuildSystem/config/package.= py:746) TESTING: check from config.libraries(/tmp/guix-build-petsc-mumps-openmpi-3.= 9.3.drv-0/petsc-3.9.3/config/BuildSystem/config/libraries.py:155) ***************************************************************************= **** UNABLE to CONFIGURE with GIVEN OPTIONS (see configure.log for d= etails): ---------------------------------------------------------------------------= ---- --with-ptscotch-lib=3D['/gnu/store/rnbax3lpgai4mg6hgxp9j80jkxhavini-pt-scot= ch-6.0.5a/lib/libesmumps.a', 'libscotch.a', 'libscotcherr.a', 'libptesmumps= .a', 'libptscotch.a', 'libptscotcherr.a'] and=20 --with-ptscotch-include=3D['/gnu/store/rnbax3lpgai4mg6hgxp9j80jkxhavini-pt-= scotch-6.0.5a/include'] did not work ***************************************************************************= **** --8<---------------cut here---------------end--------------->8--- Any ideas? Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 24 12:09:26 2018 Received: (at 32818) by debbugs.gnu.org; 24 Sep 2018 16:09:26 +0000 Received: from localhost ([127.0.0.1]:52265 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4TQL-00011v-Qq for submit@debbugs.gnu.org; Mon, 24 Sep 2018 12:09:26 -0400 Received: from smtp.hosts.co.uk ([85.233.160.19]:26960) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4TQK-00011g-7G for 32818@debbugs.gnu.org; Mon, 24 Sep 2018 12:09:24 -0400 Received: from [79.123.23.187] (helo=pancake.local) by smtp.hosts.co.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim) (envelope-from ) id 1g4TQE-0000ff-7e; Mon, 24 Sep 2018 17:09:18 +0100 Message-ID: <1537805357.6408.17.camel@tourbillion-technology.com> Subject: Re: [bug#32818] [PATCH] gnu: Add petsc-mumps-openmpi. From: Paul Garlick To: Ludovic =?ISO-8859-1?Q?Court=E8s?= Date: Mon, 24 Sep 2018 17:09:17 +0100 In-Reply-To: <871s9jvzva.fsf@gnu.org> References: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> <871s9jvzva.fsf@gnu.org> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32818 Cc: 32818@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Ludo, > On current master (e72702475da2379e10ca09e724e10a9bceceef1b), it > fails That's curious.  The build is succeeding for me (on today's commit 5c8031f...). The configure.log should help.  The last error reported is the one to look for.  For me, the path to a previous failed-build log file was: /tmp/guix-build-petsc-mumps-openmpi-3.9.3.drv-6/petsc-3.9.3/arch- linux2-c-debug/lib/petsc/conf/configure.log My build commands are: $ ./pre-inst-env guix environment --pure petsc-mumps-openmpi --ad-hoc guile-gcrypt guile-git  $ GUILE_LOAD_PATH=$GUIX_ENVIRONMENT/share/guile/site/2.2 ./pre-inst-env guix build -K petsc-mumps-openmpi Can you see in your configure.log a clue, such as 'undefined reference', near to the end?   Best regards, Paul. From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 25 09:15:08 2018 Received: (at 32818) by debbugs.gnu.org; 25 Sep 2018 13:15:08 +0000 Received: from localhost ([127.0.0.1]:52957 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4nBE-000847-6r for submit@debbugs.gnu.org; Tue, 25 Sep 2018 09:15:08 -0400 Received: from mail.onyx.syn-alias.com ([206.152.134.66]:5250 helo=smtp.centurylink.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4nBB-00083D-Vb for 32818@debbugs.gnu.org; Tue, 25 Sep 2018 09:15:06 -0400 DKIM-Signature: v=1; a=rsa-sha1; d=centurylink.net; s=ctl201402; c=relaxed/simple; q=dns/txt; i=@centurylink.net; t=1537881300; h=From:Subject:Date:To:MIME-Version:Content-Type; bh=QAzpL+luNbuHCNid3MIOtJh8wFc=; b=oh5ZdfqYwK1xe8qxNBF3etS2+YPs84DzTBoSSea0o9BgUfl+27jvbTW/tzZIMvr0 mkRTwuZ0JeNHBpVGbWY2SO7dI0yJc9vAgqw37YNRnIizbuS+PeiWWUdpvdWJZ0FV pPDlm/YRx9D8s9loEeg4QScOJj3fKnM6ydEpkCkex7ocky4GxrN7U/dgaCXX7IAa 4BuKdtfRxGYOyYgBHxG2EMItVRNFlkceLa/f/y+79xpEw8eu9yFW/ZDN1q9oSdly OsEdCyT4TMpBMd2EsaLSNHZAzf1UI1BloKm00DZgzopchEc1kWor7FMUtqr8ETw+ AxOYeqSjHoCuBB0Q9rBB7w==; X_CMAE_Category: , , X-CNFS-Analysis: v=2.2 cv=bKRUG72Z c=1 sm=1 tr=0 a=XEEs8mtOKeYqACydIcGjkA==:117 a=XEEs8mtOKeYqACydIcGjkA==:17 a=KGjhK52YXX0A:10 a=JBFolyDoGHsA:10 a=zSv6zi-ZgakA:10 a=v9CA4rZzAAAA:8 a=PZ_HiP03SxzGWUp0e7gA:9 a=CjuIK1q_8ugA:10 a=OCU8fTlYrKl0j3gU15sA:9 a=vvO3zLalzpCLnPWG-uKa:22 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine X-Authed-Username: ZXJpY2JhdmllckBjZW50dXJ5bGluay5uZXQ= Authentication-Results: smtp04.onyx.dfw.sync.lan smtp.user=ericbavier@centurylink.net; auth=pass (LOGIN) Received: from [97.116.162.206] ([97.116.162.206:49666] helo=localhost) by smtp.centurylink.net (envelope-from ) (ecelerity 3.6.25.56547 r(Core:3.6.25.0)) with ESMTPSA (cipher=AES256-GCM-SHA384) id D2/83-26611-3D43AAB5; Tue, 25 Sep 2018 09:15:00 -0400 Date: Tue, 25 Sep 2018 08:14:50 -0500 From: Eric Bavier To: Paul Garlick Subject: Re: [bug#32818] [PATCH] gnu: Add petsc-mumps-openmpi. Message-ID: <20180925081450.2c348bb3@centurylink.net> In-Reply-To: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> References: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> X-Mailer: Claws Mail 3.17.1 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/cEMggHJlZ3n2Oq=uhEyBeYK"; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 32818 Cc: 32818@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --Sig_/cEMggHJlZ3n2Oq=uhEyBeYK Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Mon, 24 Sep 2018 11:32:44 +0100 Paul Garlick wrote: > * gnu/packages/maths.scm (petsc-mumps-openmpi): New variable. > --- > gnu/packages/maths.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 42 insertions(+) >=20 > diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm > index 736bac1..b2fff54 100644 > --- a/gnu/packages/maths.scm > +++ b/gnu/packages/maths.scm > @@ -1724,6 +1724,48 @@ scientific applications modeled by partial differe= ntial equations.") > ,@(delete "--with-mpi=3D0" ,cf))))) > (synopsis "Library to solve PDEs (with complex scalars and MPI suppo= rt)"))) > =20 > +(define-public petsc-mumps-openmpi > + (package (inherit petsc-openmpi) > + (name "petsc-mumps-openmpi") > + (inputs > + `(("metis" ,metis) > + ("mumps" ,mumps-openmpi) > + ("scalapack" ,scalapack) > + ("scotch" ,pt-scotch) > + ,@(package-inputs petsc-openmpi))) I don't see why we'd add this as a new package, rather than simply adjust the capabilities/inputs of the "petsc-openmpi" package. > + (arguments > + (substitute-keyword-arguments (package-arguments petsc-openmpi) > + ((#:configure-flags cf) > + ``(,(string-append "--with-metis-include=3D" > + (assoc-ref %build-inputs "metis") "/include") > + ,(string-append "--with-metis-lib=3D" > + (assoc-ref %build-inputs "metis") "/lib/" > + "libmetis.so") > + ,(string-append "--with-mumps-include=3D" > + (assoc-ref %build-inputs "mumps") "/include") > + ,(string-append "--with-mumps-lib=3D[" > + (assoc-ref %build-inputs "mumps") "/lib/" > + "libdmumps.a," > + "libzmumps.a," > + "libsmumps.a," > + "libcmumps.a," > + "libmumps_common.a," > + "libpord.a]") > + ,(string-append "--with-scalapack-lib=3D" > + (assoc-ref %build-inputs "scalapack") "/lib/" > + "libscalapack.so") > + ,(string-append "--with-ptscotch-include=3D" > + (assoc-ref %build-inputs "scotch") "/include") > + ,(string-append "--with-ptscotch-lib=3D[" > + (assoc-ref %build-inputs "scotch") "/lib/" > + "libesmumps.a," > + "libscotch.a," > + "libscotcherr.a," > + "libptesmumps.a," > + "libptscotch.a," > + "libptscotcherr.a]") I believe PETSc's configure script will handle much of the flags on its own if it's provided with "--with-metis", "--with-scotch", "--with-mumps", "--with-scalapack" flags. I have not tried building this yet, but I will give it a try later. `~Eric --Sig_/cEMggHJlZ3n2Oq=uhEyBeYK Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEoMXjUi7471xkzbfw/XPKxxnTJWYFAluqNMoACgkQ/XPKxxnT JWZ8fA/7Bsr5E3uHRbxrpT50387054Ebu2WIOMvT7EQafIrWvBS+Vz4DxY0No3op m2ceBajcpmTiNWwpACSTInvEvW7Un0y6eWYgdj3JaVHqVWrrllZNvP6c3INUorTE /BOgUTD3xJT3Q39X5sA8joDLqenaD8fE1YAMCQDqnHF7pUfFOGGZBhrpq7OS9NpJ qm8CWGlEwx9TA+p5S1mPFtj8kYx20s5+OpKfSe+8mZLf2surPRmKscYMT/K4KQhe RHwCmi41uHGVTh3IdNLYsZ/GxFrUcLV3wAQ2rNKNAAZCa6rxLCHTie2gMaPe5t1T 22OPT/27fr2+firMNfp+Su2SlNpIN45MdD3665oNL/PRrkWUjKywM+OW7QM5rx5O 7dGyAyKi6pCbh4DxlIoYsinOG1bVyMgFATDjPsOB3aKI4khc/MV3SnT3gOeqK35N RIHyO+nhyou7GvhkpZldsU3pvgERAbTVTf75OTggdous3eL0dqCvJCMev8f5OH/q A/5Y+XGzibUxCsqOJrZUuS/AMOyeE8IuZ55YTkfGHkoMHLB4TNAQhVGjqC8HbZ1d Pci9BYNL40LVgcjPSi7CNXIbCU/F/XvR3V8su13E8hOqFHpYKTOHhf5p6wz4F/P+ OX0bU5FleYtjzzEt0UwVhscFnRxk13ZCCXBscwNU7fTYcCmagbE= =2ePY -----END PGP SIGNATURE----- --Sig_/cEMggHJlZ3n2Oq=uhEyBeYK-- From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 25 09:41:01 2018 Received: (at 32818) by debbugs.gnu.org; 25 Sep 2018 13:41:02 +0000 Received: from localhost ([127.0.0.1]:52962 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4naH-0000EZ-FT for submit@debbugs.gnu.org; Tue, 25 Sep 2018 09:41:01 -0400 Received: from smtp.hosts.co.uk ([85.233.160.19]:25796) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4naF-0000E9-Vf for 32818@debbugs.gnu.org; Tue, 25 Sep 2018 09:41:00 -0400 Received: from [79.123.23.187] (helo=pancake.local) by smtp.hosts.co.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim) (envelope-from ) id 1g4na9-0005DJ-9d; Tue, 25 Sep 2018 14:40:54 +0100 Message-ID: <1537882852.3116.12.camel@tourbillion-technology.com> Subject: Re: [bug#32818] [PATCH] gnu: Add petsc-mumps-openmpi. From: Paul Garlick To: Eric Bavier Date: Tue, 25 Sep 2018 14:40:52 +0100 In-Reply-To: <20180925081450.2c348bb3@centurylink.net> References: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> <20180925081450.2c348bb3@centurylink.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32818 Cc: 32818@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Eric, > I don't see why we'd add this as a new package, rather than simply > adjust the capabilities/inputs of the "petsc-openmpi" package. Yes, that was my Plan A.  However, I spotted that the package dealii- openmpi has petsc-openmpi as an input but also mumps-metis-openmpi, instead of mumps-openmpi.  If the mumps configuration in petsc-mumps- openmpi is included in petsc-openmpi then dealii-openmpi may not build.  WDYT? > I believe PETSc's configure script will handle much of the flags on > its > own if it's provided with "--with-metis", "--with-scotch", > "--with-mumps", "--with-scalapack" flags. This would be handy for sure.  I will give it a try. Best regards, Paul. From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 25 11:28:38 2018 Received: (at 32818) by debbugs.gnu.org; 25 Sep 2018 15:28:38 +0000 Received: from localhost ([127.0.0.1]:53925 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4pGQ-00034T-Gu for submit@debbugs.gnu.org; Tue, 25 Sep 2018 11:28:38 -0400 Received: from smtp.hosts.co.uk ([85.233.160.19]:21626) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4pGO-00034C-I5 for 32818@debbugs.gnu.org; Tue, 25 Sep 2018 11:28:37 -0400 Received: from [79.123.23.187] (helo=pancake.local) by smtp.hosts.co.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim) (envelope-from ) id 1g4pGH-00006J-Ck; Tue, 25 Sep 2018 16:28:30 +0100 Message-ID: <1537889308.3116.27.camel@tourbillion-technology.com> Subject: Re: [bug#32818] [PATCH] gnu: Add petsc-mumps-openmpi. From: Paul Garlick To: Eric Bavier Date: Tue, 25 Sep 2018 16:28:28 +0100 In-Reply-To: <20180925081450.2c348bb3@centurylink.net> References: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> <20180925081450.2c348bb3@centurylink.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32818 Cc: 32818@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: 1537882852.3116.12.camel@tourbillion-technology.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Eric, >  I will give it a try. The build is successful with the "--with-PACKAGENAME=1" flags.  The PETSc configure script picks up the same set of libraries that I had specified by the "--with-PACKAGENAME-lib" flags.  Thank you for the tip! Actually, I would like to add a "--with-hypre=1" flag too to add in support for the HYPRE preconditioner.  However, this is related to the petsc-mumps-openmpi vs petsc-openmpi naming question.  As far as I can see the presence of HYPRE would not interfere with dealii-openmpi so perhaps it would be better to include it in petsc-openmpi instead. Paul. From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 25 23:55:00 2018 Received: (at 32818) by debbugs.gnu.org; 26 Sep 2018 03:55:00 +0000 Received: from localhost ([127.0.0.1]:54284 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g50ui-0007F8-Dr for submit@debbugs.gnu.org; Tue, 25 Sep 2018 23:55:00 -0400 Received: from mail.onyx.syn-alias.com ([206.152.134.66]:5495 helo=smtp.centurylink.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g50ug-0007Eu-Ja for 32818@debbugs.gnu.org; Tue, 25 Sep 2018 23:54:59 -0400 DKIM-Signature: v=1; a=rsa-sha1; d=centurylink.net; s=ctl201402; c=relaxed/simple; q=dns/txt; i=@centurylink.net; t=1537934092; h=From:Subject:Date:To:MIME-Version:Content-Type; bh=k3PRab83S/fVSlIgZ36bcSOOKb0=; b=Zgx3jCkxAVXCjRaRBrJqV+fwMozBGlIMg5RPXPBr4zkwOK5UVwGeSRfVMaYsP1QX 6DpXKDSpwf6Hj43Hc3mf5qTu2/6G08zbivReA3y01UdA8DtLZhiNokQF8gY/5UQ4 hjxcQycaH9cOxxYfVVYIAqLpHQuexBtBn5AdYj+ZZL5dnFEYty93GBRZfsVrXkDz ecRZyC87tEwybuP44JzG4NkY6eCj+4sM4F3qZH66k55FpUM3w6os6vA73zowF9nQ wZcGKLm72aQtPy55z9eTlkHz0kP0real54R57wi9Gi8jmnqr3bR28HpGfa5Piw4M R8tLR922578aaKhltNvv9g==; X_CMAE_Category: , , X-CNFS-Analysis: v=2.2 cv=PuPRVEE3 c=1 sm=1 tr=0 a=XEEs8mtOKeYqACydIcGjkA==:117 a=XEEs8mtOKeYqACydIcGjkA==:17 a=KGjhK52YXX0A:10 a=JBFolyDoGHsA:10 a=zSv6zi-ZgakA:10 a=v9CA4rZzAAAA:8 a=Um-Xpt21qh16ODtRO04A:9 a=QEXdDO2ut3YA:10 a=iNgiIKMcW6bSICOkPegA:9 a=vvO3zLalzpCLnPWG-uKa:22 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine X-Authed-Username: ZXJpY2JhdmllckBjZW50dXJ5bGluay5uZXQ= Authentication-Results: smtp03.onyx.dfw.sync.lan smtp.user=ericbavier@centurylink.net; auth=pass (LOGIN) Received: from [97.116.162.206] ([97.116.162.206:53046] helo=localhost) by smtp.centurylink.net (envelope-from ) (ecelerity 3.6.25.56547 r(Core:3.6.25.0)) with ESMTPSA (cipher=AES256-GCM-SHA384) id C0/84-18885-C030BAB5; Tue, 25 Sep 2018 23:54:52 -0400 Date: Tue, 25 Sep 2018 22:54:44 -0500 From: Eric Bavier To: Paul Garlick Subject: Re: [bug#32818] [PATCH] gnu: Add petsc-mumps-openmpi. Message-ID: <20180925225444.7d24584e@centurylink.net> In-Reply-To: <1537882852.3116.12.camel@tourbillion-technology.com> References: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> <20180925081450.2c348bb3@centurylink.net> <1537882852.3116.12.camel@tourbillion-technology.com> X-Mailer: Claws Mail 3.17.1 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/Ciyuzi7P28uKdsE2NPTeWwC"; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 32818 Cc: 32818@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --Sig_/Ciyuzi7P28uKdsE2NPTeWwC Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Tue, 25 Sep 2018 14:40:52 +0100 Paul Garlick wrote: > Hi Eric, >=20 > > I don't see why we'd add this as a new package, rather than simply > > adjust the capabilities/inputs of the "petsc-openmpi" package. =20 >=20 > Yes, that was my Plan A. =C2=A0However, I spotted that the package dealii- > openmpi has petsc-openmpi as an input but also=C2=A0mumps-metis-openmpi, > instead of mumps-openmpi. =C2=A0If the mumps configuration in petsc-mumps- > openmpi is included in petsc-openmpi then dealii-openmpi may not build. > =C2=A0WDYT? Good point. I'm not sure how dealii would react to that. It's also possible that the state of affairs has changed in more recent versions of dealii (also on my todo list). I suppose we'd need to give it a try to know. If it does fail, I'd say a patch to dealii is called for, since the presense of scotch ordering capability in MUMPS should not prevent dealii from using the metis orderings in any way. `~Eric --Sig_/Ciyuzi7P28uKdsE2NPTeWwC Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEoMXjUi7471xkzbfw/XPKxxnTJWYFAlurAwQACgkQ/XPKxxnT JWbTChAAlY2OK1mLKH2iwTR8/ggIm7L/L0dzv9AfNfcfHG1d5LwqT9xVrvRHDHVj l+xjxnN6sLw/3C9spuAF3R+Uhuic9TuubHjvT/TfV9VqLj4ghbxVmK8QOh5uem9N 6DNY/GdbQdqNDG5vKIAJXejuMgYmO5e7z3C7IZASdm+FVGrZeYWFzwaTTeJaiw9e AUWANh2pibs47h2Sj8fSidth87Y/Duyg+inTGJkMyVfHYiXfAxM6eJWRoIUEzZYd XVfeDV6mtJyqa4YYsScyZ8byJbZDkQneG1lL8KEtJrg0Axzcua3QWqgT3Y6liK2v jyyEdchDgkmJ8T29R5IP6y8q3H+W156/7D6Ub7Qgcy01Td9dI+OpyM2d4QGGY7K8 Bwo6l7QuH5FxjHn/Cckj67xXxqjxBxUr4zXZVezfaEp12TACHuoBqk3IFp0ZdisO 7tZjonoilIhv9wUrroLMBx64h46vUVpf2c13pQjW2YzpA+jzhbe4YIgdh27tho0W hXOKA6sOxZ18FrPCxyl3bJhQhSNDu/40aGUHaWXYmBl2nanh+OMifkPF09IV1BsT EIehFdpPr3dA+A6JTGalUN3uc4mwnSQBNOm2v86Utb7vsLcsfKhce1H1Vw/leEtB amfyiXfpSui326/7jXX1XJXgUH4Sk1Tm98uOCmT9EfmxFww+7B8= =+Din -----END PGP SIGNATURE----- --Sig_/Ciyuzi7P28uKdsE2NPTeWwC-- From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 26 05:08:12 2018 Received: (at 32818) by debbugs.gnu.org; 26 Sep 2018 09:08:12 +0000 Received: from localhost ([127.0.0.1]:54389 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g55no-0006wD-52 for submit@debbugs.gnu.org; Wed, 26 Sep 2018 05:08:12 -0400 Received: from smtp.hosts.co.uk ([85.233.160.19]:49176) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g55nn-0006vx-0c for 32818@debbugs.gnu.org; Wed, 26 Sep 2018 05:08:11 -0400 Received: from [79.123.23.187] (helo=pancake.local) by smtp.hosts.co.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim) (envelope-from ) id 1g55nh-0007Pv-9y; Wed, 26 Sep 2018 10:08:05 +0100 Message-ID: <1537952883.2856.8.camel@tourbillion-technology.com> Subject: Re: [bug#32818] [PATCH] gnu: Add petsc-mumps-openmpi. From: Paul Garlick To: Eric Bavier Date: Wed, 26 Sep 2018 10:08:03 +0100 In-Reply-To: <20180925225444.7d24584e@centurylink.net> References: <1537785164-18606-1-git-send-email-pgarlick@tourbillion-technology.com> <20180925081450.2c348bb3@centurylink.net> <1537882852.3116.12.camel@tourbillion-technology.com> <20180925225444.7d24584e@centurylink.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32818 Cc: 32818@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Eric, > Good point.  I'm not sure how dealii would react to that.  It's also > possible that the state of affairs has changed in more recent > versions > of dealii (also on my todo list).  I suppose we'd need to give it a > try > to know.  If it does fail, I'd say a patch to dealii is called for, > since the presense of scotch ordering capability in MUMPS should not > prevent dealii from using the metis orderings in any way. > OK, let's go for the 'add-mumps-to-petsc-openmpi' plan.   I shall re-submit this patch (#32818) to add MUMPS support to the existing petsc-openmpi package. Best regards, Paul. From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 26 08:01:34 2018 Received: (at 32818) by debbugs.gnu.org; 26 Sep 2018 12:01:34 +0000 Received: from localhost ([127.0.0.1]:54492 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g58VZ-00072Y-Qd for submit@debbugs.gnu.org; Wed, 26 Sep 2018 08:01:34 -0400 Received: from smtp.hosts.co.uk ([85.233.160.19]:10570) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g58VX-00072L-P6 for 32818@debbugs.gnu.org; Wed, 26 Sep 2018 08:01:32 -0400 Received: from [79.123.23.187] (helo=parkin.tourbillion-technology.com.com) by smtp.hosts.co.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim) (envelope-from ) id 1g58VR-0001RT-4G; Wed, 26 Sep 2018 13:01:25 +0100 From: Paul Garlick To: 32818@debbugs.gnu.org, Eric Bavier Subject: [PATCH] gnu: petsc-openmpi: Configure with support for MUMPS solver. Date: Wed, 26 Sep 2018 12:59:54 +0100 Message-Id: <1537963194-14417-1-git-send-email-pgarlick@tourbillion-technology.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1537952883.2856.8.camel@tourbillion-technology.com> References: <1537952883.2856.8.camel@tourbillion-technology.com> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32818 Cc: Paul Garlick X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) * gnu/packages/maths.scm (petsc-openmpi)[inputs]: Add metis, mumps-openmpi, scalapack and pt-scotch. [arguments]: Add "--with-PACKAGENAME=1" flags. Move 'mpi-setup' phase ahead of 'configure' phase. --- gnu/packages/maths.scm | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 636b485..6adddc0 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1695,13 +1695,21 @@ scientific applications modeled by partial differential equations.") (package (inherit petsc) (name "petsc-openmpi") (inputs - `(("openmpi" ,openmpi) - ("hdf5" ,hdf5-parallel-openmpi) + `(("hdf5" ,hdf5-parallel-openmpi) + ("metis" ,metis) + ("mumps" ,mumps-openmpi) + ("openmpi" ,openmpi) + ("scalapack" ,scalapack) + ("scotch" ,pt-scotch) ,@(package-inputs petsc))) (arguments (substitute-keyword-arguments (package-arguments petsc) ((#:configure-flags cf) ``("--with-mpiexec=mpirun" + "--with-metis=1" + "--with-mumps=1" + "--with-scalapack=1" + "--with-ptscotch=1" ,(string-append "--with-mpi-dir=" (assoc-ref %build-inputs "openmpi")) ,(string-append "--with-hdf5-include=" @@ -1711,9 +1719,9 @@ scientific applications modeled by partial differential equations.") ,@(delete "--with-mpi=0" ,cf))) ((#:phases phases) `(modify-phases ,phases - (add-before 'check 'mpi-setup + (add-before 'configure 'mpi-setup ,%openmpi-setup))))) - (synopsis "Library to solve PDEs (with MPI support)"))) + (synopsis "Library to solve PDEs (with MUMPS and MPI support)"))) (define-public petsc-complex-openmpi (package (inherit petsc-complex) @@ -1730,7 +1738,6 @@ scientific applications modeled by partial differential equations.") ,@(delete "--with-mpi=0" ,cf))))) (synopsis "Library to solve PDEs (with complex scalars and MPI support)"))) - (define-public python-kiwisolver (package (name "python-kiwisolver") -- 1.8.3.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 04 09:53:26 2018 Received: (at 32818) by debbugs.gnu.org; 4 Oct 2018 13:53:26 +0000 Received: from localhost ([127.0.0.1]:36414 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g844E-0003D8-88 for submit@debbugs.gnu.org; Thu, 04 Oct 2018 09:53:26 -0400 Received: from smtp.hosts.co.uk ([85.233.160.19]:29454) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g844C-0003Cr-0I for 32818@debbugs.gnu.org; Thu, 04 Oct 2018 09:53:24 -0400 Received: from [79.123.23.187] (helo=pancake.local) by smtp.hosts.co.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim) (envelope-from ) id 1g8445-0007ED-5Z; Thu, 04 Oct 2018 14:53:17 +0100 Message-ID: <1538661196.4575.6.camel@tourbillion-technology.com> Subject: Re: [PATCH] gnu: petsc-openmpi: Configure with support for MUMPS solver. From: Paul Garlick To: 32818@debbugs.gnu.org, Eric Bavier Date: Thu, 04 Oct 2018 14:53:16 +0100 In-Reply-To: <1537963194-14417-1-git-send-email-pgarlick@tourbillion-technology.com> References: <1537952883.2856.8.camel@tourbillion-technology.com> <1537963194-14417-1-git-send-email-pgarlick@tourbillion-technology.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32818 Cc: ludo@gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: 1537963194-14417-1-git-send-email-pgarlick@tourbillion-technology.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Guix, Are there any comments on the revised patch?  I  have re-checked that it builds successfully.  It does. Best regards, Paul. From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 04 19:08:22 2018 Received: (at 32818-done) by debbugs.gnu.org; 4 Oct 2018 23:08:23 +0000 Received: from localhost ([127.0.0.1]:37214 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g8CjG-0002CE-Mh for submit@debbugs.gnu.org; Thu, 04 Oct 2018 19:08:22 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:49587) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g8CjF-0002C7-7i for 32818-done@debbugs.gnu.org; Thu, 04 Oct 2018 19:08:21 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 0D8FA215AC; Thu, 4 Oct 2018 19:08:21 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Thu, 04 Oct 2018 19:08:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=Lh94A8PUsgIsV3jpfIhEHBd3 4zBHFa2iYqz6hjn6vOA=; b=COuxAsM4AP2XNkDWlLOXs16Oxf1aVRXqVc/ycqBy Ir35YuzhSMo20yyiIOWDILBnPrHVzq1Uc66CWe+c4vDdIQAefBIW3MpaOqMaaNNw luXFDWtFcHC2mAY2LorFq4a+aRzxGEogUPFCGvf0gqYfIeknWeF8bCblwqI9awOq x7o= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=Lh94A8 PUsgIsV3jpfIhEHBd34zBHFa2iYqz6hjn6vOA=; b=CxIqAUWhzbMT8kOD/Rtf76 t8Y02gUeQo69amf7AkXVOHRmqopjpVAbNJWclgg8hnldIFzQT+XWQBu0HypuV10T 8iMHA63Aa7kXo3Rj+FIZiOOy3/Etf5BA3i5bECzu8oHDBJA9BknK5sU6ovoKdA0g GXPYOzqhfmVBE29GnB93Peil7X5smTJxkUGVQWCFX1hZan/JkhVAbSBknpek6ppq 1WvEPzPkEf6FMADCePb0ENGIzl4IolPhSR/9I1a34Gw8BFTOV5IDXDu1KzBWQkaN FrOa7rv3muNdbn9MdRN4Qge/qfmS4i3E/jNcZWerpSTM+KsP8aLoeB8IEAN+Yq5Q == X-ME-Sender: X-ME-Proxy: Received: from localhost (pool-71-183-39-69.nycmny.fios.verizon.net [71.183.39.69]) by mail.messagingengine.com (Postfix) with ESMTPA id 640A9E479F; Thu, 4 Oct 2018 19:08:20 -0400 (EDT) Date: Thu, 4 Oct 2018 19:08:15 -0400 From: Leo Famulari To: Paul Garlick Subject: Re: [bug#32818] [PATCH] gnu: petsc-openmpi: Configure with support for MUMPS solver. Message-ID: <20181004230815.GA2870@jasmine.lan> References: <1537952883.2856.8.camel@tourbillion-technology.com> <1537963194-14417-1-git-send-email-pgarlick@tourbillion-technology.com> <1538661196.4575.6.camel@tourbillion-technology.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="MGYHOYXEY6WxJCY8" Content-Disposition: inline In-Reply-To: <1538661196.4575.6.camel@tourbillion-technology.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32818-done Cc: 32818-done@debbugs.gnu.org, Eric Bavier X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --MGYHOYXEY6WxJCY8 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 04, 2018 at 02:53:16PM +0100, Paul Garlick wrote: > Hi Guix, >=20 > Are there any comments on the revised patch?=A0 >=20 > I =A0have re-checked that it builds successfully. =A0It does. I pushed as 9e2aa70bad8c06cdf9a44065a31f12b3205e92e0. Thanks! --MGYHOYXEY6WxJCY8 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlu2nVsACgkQJkb6MLrK fwhFZg/9FHJPOC8WidoWSKR4UZ3IvLax0Uhk2i08w2BQ9A1kHFKN9DqQya+mxjlg PGAzrXGmW1bKHZ9xpr8b2NgLQu7Ylv+TB9jj7USzO/zvyn+w+IryqFWPB1paD8Or m/rd2uQV+PuAbNNKzQkR2H+BO9QI9xoDrP4AiXheJX1AKmpPScvni6Go8TACk9yV wPd4fSSQSBk7XhUxdrWdPDcY4SZU5rWfsxM97BZfbwHb9/h22leOIpwCVRUEj6Bx cR1hfKLfjtUUYcM2M2Jw724P/pkt1Dxqq3D2xCoUlJKaHtAlNlsN1BeCpRvmSelT g//IO2OudNH1WNDRqP5OVwPrMLRgARGvZxJqVjdXywaarJ3V6HOPd6DfLjEPeJoX pnHtF8nKf6b11fdiQiShWEx+fl6sc8phFitkG5ymhBZQ9IqYeRXYoveCR4LIe281 qzptVmWMriuBa37cy7R4HiVbicwzFS96mZppHmUVP/Ny/L4GoN/+1KuoeUVlWmLh bafNVqyNuK1y3K2lm2VbagXkN4+/O4YItetvOMo3WnkcxQDFNSnMcbXoEC5VYh0X tr3hp1qla2baC/qT9I1zYJ4XfrF7oBhfMbT9RxBwZJoOhm6EPUjoqAisdtom2EXf VloHNyPgd1Lwc7jaNpo2M/gs0f+EqZY3VaeDHBA3f9Cbzzo9Trk= =dJtX -----END PGP SIGNATURE----- --MGYHOYXEY6WxJCY8-- From unknown Mon Jun 23 11:26:06 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 02 Nov 2018 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator