GNU bug report logs -
#32818
[PATCH] gnu: Add petsc-mumps-openmpi.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#32818: [PATCH] gnu: Add petsc-mumps-openmpi.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 32818 <at> debbugs.gnu.org.
--
32818: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32818
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
On Thu, Oct 04, 2018 at 02:53:16PM +0100, Paul Garlick wrote:
> Hi Guix,
>
> Are there any comments on the revised patch?
>
> I have re-checked that it builds successfully. It does.
I pushed as 9e2aa70bad8c06cdf9a44065a31f12b3205e92e0. Thanks!
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
* 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
This bug report was last modified 6 years and 235 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.