Skip to content
Snippets Groups Projects
Unverified Commit a560641a authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: openmpi: Reintroduce PSM (Intel TrueScale) support.

Fixes a regression introduced in
91298042 whereby PSM would never be
added as an input.

* gnu/packages/mpi.scm (openmpi)[inputs]: Re-add PSM on supported
systems.
parent 6df2a50a
No related branches found
No related tags found
No related merge requests found
......@@ -168,10 +168,10 @@ (define-public openmpi
`(("hwloc" ,hwloc "lib")
("gfortran" ,gfortran)
("libfabric" ,libfabric)
,@(match (%current-system)
((member (package-supported-systems psm))
`(("psm" ,psm)))
(_ `()))
,@(if (and (not (%current-target-system))
(member (%current-system) (package-supported-systems psm)))
`(("psm" ,psm))
'())
("rdma-core" ,rdma-core)
("valgrind" ,valgrind)))
(native-inputs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment