Skip to content
Snippets Groups Projects
Verified Commit f2b19785 authored by Lars Bilke's avatar Lars Bilke
Browse files

[guix] Added package openmpi-pmix.

Then you can build portable (tested eve end juwels) container with:

guix pack -L $PWD/.guix/modules --fallback --without-tests=hdf5-parallel-openmpi --with-input=openmpi=openmpi-pmix -RR --format=squashfs bash ogs-petsc

On Juwels you need to start with `srun --mpi=mspmix ...`
parent 84847dad
No related branches found
No related tags found
No related merge requests found
...@@ -192,6 +192,17 @@ ...@@ -192,6 +192,17 @@
(sha256 (sha256
(base32 (base32
"0rbcfvl7y472sykzdq3vrkw83kar0lpzhk3wq9yj9cdydl8cpfcz")))))) "0rbcfvl7y472sykzdq3vrkw83kar0lpzhk3wq9yj9cdydl8cpfcz"))))))
(define-public openmpi-pmix
(package
(inherit openmpi)
(name "openmpi-pmix")
(arguments
(substitute-keyword-arguments (package-arguments openmpi)
((#:configure-flags flags)
#~(append '("--with-pmix=internal")
#$flags))))
(synopsis "OpenMPI with PMIx")))
;; return package ;; return package
ogs ogs
......
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