[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/15: gnu: openmpi: Upgrade to 1.8.5.
From: |
Eric Bavier |
Subject: |
04/15: gnu: openmpi: Upgrade to 1.8.5. |
Date: |
Tue, 30 Jun 2015 01:29:45 +0000 |
bavier pushed a commit to branch master
in repository guix.
commit 38f0a2badee471db3ae088a839a70f073133f425
Author: Eric Bavier <address@hidden>
Date: Mon Jun 15 02:24:14 2015 -0500
gnu: openmpi: Upgrade to 1.8.5.
* gnu/packages/mpi.scm (openmpi): Upgrade to 1.8.5.
[native-inputs]: Add perl.
[arguments]: Add configure flags for thread support.
---
gnu/packages/mpi.scm | 19 +++++++++++--------
1 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 9677c12..9417e35 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -32,6 +32,7 @@
#:use-module (gnu packages xorg)
#:use-module (gnu packages gtk)
#:use-module (gnu packages xml)
+ #:use-module (gnu packages perl)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages valgrind))
@@ -91,7 +92,7 @@ bind processes, and much more.")
(define-public openmpi
(package
(name "openmpi")
- (version "1.8.1")
+ (version "1.8.5")
(source
(origin
(method url-fetch)
@@ -100,22 +101,24 @@ bind processes, and much more.")
"/downloads/openmpi-" version ".tar.bz2"))
(sha256
(base32
- "13z1q69f3qwmmhpglarfjminfy2yw4rfqr9jydjk5507q3mjf50p"))))
+ "1i7vjf599kl5lm8n4vnwq9q1d9scn4sdjh42kfq1i9yzxnlhdsjc"))))
(build-system gnu-build-system)
(inputs
`(("hwloc" ,hwloc)
("gfortran" ,gfortran)
("valgrind" ,valgrind)))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("pkg-config" ,pkg-config)
+ ("perl" ,perl)))
(arguments
`(#:configure-flags `("--enable-static"
"--enable-oshmem"
- ;; Thread support causes some applications to hang
- ;; "--enable-event-thread-support"
- ;; "--enable-opal-multi-threads"
- ;; "--enable-orte-progress-threads"
- ;; "--enable-mpi-thread-multiple"
+
+ "--enable-event-thread-support"
+ "--enable-opal-multi-threads"
+ "--enable-orte-progress-threads"
+ "--enable-mpi-thread-multiple"
+
"--enable-mpi-ext=all"
"--with-devel-headers"
"--enable-debug"
- branch master updated (e8df8f4 -> a17d456), Eric Bavier, 2015/06/29
- 01/15: gnu: python-mccabe: Fix license field., Eric Bavier, 2015/06/29
- 04/15: gnu: openmpi: Upgrade to 1.8.5.,
Eric Bavier <=
- 03/15: gnu: hwloc: Move numactl to inputs., Eric Bavier, 2015/06/29
- 06/15: gnu: scotch, pt-scotch: Use modify-phases., Eric Bavier, 2015/06/29
- 08/15: gnu: Add ScaLAPACK., Eric Bavier, 2015/06/29
- 07/15: gnu: scotch, pt-scotch: Build esmumps libraries., Eric Bavier, 2015/06/29
- 09/15: gnu: Add p4est., Eric Bavier, 2015/06/29
- 02/15: gnu: hwloc: Upgrade to 1.10.1., Eric Bavier, 2015/06/29
- 10/15: gnu: Add METIS., Eric Bavier, 2015/06/29
- 05/15: gnu: Update scotch to 6.0.4., Eric Bavier, 2015/06/29
- 11/15: gnu: Add MUMPS., Eric Bavier, 2015/06/29
- 13/15: gnu: Add arpack-ng-openmpi., Eric Bavier, 2015/06/29