mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: openmpi: Reintroduce PSM (Intel TrueScale) support.
Fixes a regression introduced in
9129804230
whereby PSM would never be
added as an input.
* gnu/packages/mpi.scm (openmpi)[inputs]: Re-add PSM on supported
systems.
This commit is contained in:
parent
6df2a50ac4
commit
a560641a60
1 changed files with 4 additions and 4 deletions
|
@ -168,10 +168,10 @@ (define-public openmpi
|
||||||
`(("hwloc" ,hwloc "lib")
|
`(("hwloc" ,hwloc "lib")
|
||||||
("gfortran" ,gfortran)
|
("gfortran" ,gfortran)
|
||||||
("libfabric" ,libfabric)
|
("libfabric" ,libfabric)
|
||||||
,@(match (%current-system)
|
,@(if (and (not (%current-target-system))
|
||||||
((member (package-supported-systems psm))
|
(member (%current-system) (package-supported-systems psm)))
|
||||||
`(("psm" ,psm)))
|
`(("psm" ,psm))
|
||||||
(_ `()))
|
'())
|
||||||
("rdma-core" ,rdma-core)
|
("rdma-core" ,rdma-core)
|
||||||
("valgrind" ,valgrind)))
|
("valgrind" ,valgrind)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue