mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
test
This commit is contained in:
parent
fc9922dfb0
commit
7c61229818
1 changed files with 22 additions and 3 deletions
|
@ -6,14 +6,33 @@
|
|||
#:use-module (glicid utils)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (glicid packages parallel)
|
||||
#:use-module (gnu packages parallel)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (gnu packages))
|
||||
|
||||
(define-public openmpi-glicid
|
||||
(package
|
||||
(inherit gnu:openmpi-4)
|
||||
(package/inherit gnu:openmpi-4
|
||||
(name "openmpi-glicid")
|
||||
(inputs (modify-inputs (package-inputs gnu:openmpi-4)
|
||||
(append openpmix) ;; because we use pmix4 now, openpmi-4 defaults to internal pmix3
|
||||
(replace "slurm" slurm-glicid)))
|
||||
|
||||
))
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
|
||||
(define-public openmpi-glicid-new
|
||||
(package/inherit gnu:openmpi-4
|
||||
(name "openmpi-glicid")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments gnu:openmpi-4)
|
||||
((#:configure-flags flags)
|
||||
(append `(cons* "--with-pmix=external" ,flags)))))
|
||||
(inputs (modify-inputs (package-inputs gnu:openmpi-4)
|
||||
(append openpmix) ;; because we use pmix4 now, openpmi-4 defaults to internal pmix3
|
||||
(replace "slurm" slurm-glicid)))
|
||||
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue