diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-05-25 13:41:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-05-25 13:43:03 +0200 |
commit | fbe1b85b63a77d3a239b511b82021a48496360b9 (patch) | |
tree | 607c73664d803b448c55ae1c790cb310a8f456a5 /gnu/packages/mpi.scm | |
parent | a560641a604c4766acfa2ff015a10c9465a721eb (diff) | |
download | guix-fbe1b85b63a77d3a239b511b82021a48496360b9.tar guix-fbe1b85b63a77d3a239b511b82021a48496360b9.tar.gz |
gnu: openmpi: Add PSM2 (Intel OmniPath) support.
* gnu/packages/mpi.scm (openmpi)[inputs]: Add PSM2 on supported systems.
Diffstat (limited to 'gnu/packages/mpi.scm')
-rw-r--r-- | gnu/packages/mpi.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm index e8d28d6060..f34b08e4ca 100644 --- a/gnu/packages/mpi.scm +++ b/gnu/packages/mpi.scm @@ -172,6 +172,10 @@ bind processes, and much more.") (member (%current-system) (package-supported-systems psm))) `(("psm" ,psm)) '()) + ,@(if (and (not (%current-target-system)) + (member (%current-system) (package-supported-systems psm2))) + `(("psm2" ,psm2)) + '()) ("rdma-core" ,rdma-core) ("valgrind" ,valgrind))) (native-inputs |