2021-10-24 22:23:44 +02:00
|
|
|
(define-module (glicid packages parallel)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (gnu packages parallel)
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
2021-11-21 21:53:48 +01:00
|
|
|
(define-public openpmix-3.1.5
|
2021-10-24 22:30:40 +02:00
|
|
|
(package
|
2021-11-21 21:53:48 +01:00
|
|
|
(name "openpmix")
|
2021-10-24 22:30:40 +02:00
|
|
|
(version "3.1.5")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2"))
|
|
|
|
(sha256 (base32 "1xswdkfcrw123ghcr9gmrb852nzjbl4i6qwrid3xyma42yal34w8"))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list
|
|
|
|
(string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc") )
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(synopsis "MPIX lib")
|
|
|
|
(description "MPIX. More to come. FIXIT")
|
|
|
|
(home-page "https://www.gnu.org/software/hello/")
|
|
|
|
(license license:gpl3+)
|
|
|
|
(inputs `(
|
|
|
|
("libevent", libevent)
|
|
|
|
("hwloc" ,hwloc-2 "lib")
|
|
|
|
("perl", perl)
|
2021-11-30 22:18:26 +01:00
|
|
|
; ("gcc", gcc-11)
|
2021-10-24 22:30:40 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2021-11-21 21:53:48 +01:00
|
|
|
(define-public openpmix-4.1.0
|
|
|
|
(package
|
|
|
|
(inherit openpmix-3.1.5)
|
|
|
|
(version "4.1.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2"))
|
2021-11-21 21:59:24 +01:00
|
|
|
(sha256 (base32 "0bl4gkh87csm3yh418wvrih35mg6swavcxj78gyb7gr1qsk0apql"))
|
2021-11-21 21:53:48 +01:00
|
|
|
)
|
2021-11-21 22:11:59 +01:00
|
|
|
)
|
|
|
|
(inputs `(
|
|
|
|
("python", python)
|
2021-11-21 22:17:24 +01:00
|
|
|
("zlib", zlib)
|
|
|
|
("pandoc", pandoc) ; not mandatory
|
2021-11-21 22:11:59 +01:00
|
|
|
,@(package-inputs openpmix-3.1.5)
|
|
|
|
)
|
|
|
|
)
|
2021-11-21 21:53:48 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2021-11-22 19:00:12 +01:00
|
|
|
(define-public openpmix openpmix-4.1.0)
|
2021-11-21 21:53:48 +01:00
|
|
|
|
2021-10-24 22:23:44 +02:00
|
|
|
|
2021-11-29 17:37:28 +01:00
|
|
|
;(define-public slurm-19.05-glicid
|
|
|
|
; (package
|
|
|
|
; (inherit slurm)
|
|
|
|
; (name "slurm-glicid")
|
|
|
|
; (version "19.05.6")
|
|
|
|
; (source
|
|
|
|
; (origin
|
|
|
|
; (method url-fetch)
|
|
|
|
; (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
|
|
|
|
; (sha256 (base32 "1kj79r8hng5gp98ickgvj3im4gr19nzd3p3p8g6rl75axb8jin7h"))
|
|
|
|
; ))
|
|
|
|
; (arguments
|
|
|
|
; `(#:configure-flags
|
|
|
|
; (list "--enable-pam" "--sysconfdir=/etc/slurm"
|
|
|
|
; "--disable-static"
|
|
|
|
; (string-append "--with-freeipmi=" (assoc-ref %build-inputs "freeipmi"))
|
|
|
|
; (string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc"))
|
|
|
|
; (string-append "--with-json=" (assoc-ref %build-inputs "json-c"))
|
|
|
|
; (string-append "--with-munge=" (assoc-ref %build-inputs "munge"))
|
|
|
|
;; (string-append "--with-pmix=" (assoc-ref %build-inputs "openpmix"))
|
|
|
|
;
|
|
|
|
; ;; 32-bit support is marked as deprecated and needs to be
|
|
|
|
; ;; explicitly enabled.
|
|
|
|
; ;;;; ,@(if (target-64bit?) '() '("--enable-deprecated"))
|
|
|
|
;
|
|
|
|
; )
|
|
|
|
; )
|
|
|
|
; )
|
|
|
|
;
|
|
|
|
; (inputs `(("gtk+-2" ,gtk+-2)
|
|
|
|
;; ("gcc", gcc-11)
|
|
|
|
;; ("openpmix", openpmix)
|
|
|
|
;; ("glicid-specific-openmpi", glicid-specific-openmpi)
|
|
|
|
; ,@(package-inputs slurm)
|
|
|
|
;
|
|
|
|
;
|
|
|
|
; ))
|
|
|
|
;; (propagated-inputs
|
|
|
|
;; `(
|
|
|
|
;; ("sssd" ,sssd)
|
|
|
|
;; ))
|
|
|
|
;
|
|
|
|
;))
|
2021-10-24 22:23:44 +02:00
|
|
|
|
|
|
|
|
2021-11-22 18:57:04 +01:00
|
|
|
(define-public slurm-20.02-glicid
|
2021-10-24 22:23:44 +02:00
|
|
|
(package
|
2021-11-29 17:37:28 +01:00
|
|
|
(inherit slurm-20.02)
|
2021-11-22 18:57:04 +01:00
|
|
|
(name "slurm-glicid")
|
2021-10-24 22:23:44 +02:00
|
|
|
(version "20.02.7")
|
|
|
|
(source
|
|
|
|
(origin
|
2021-11-29 17:37:28 +01:00
|
|
|
(inherit (package-source slurm-20.02))
|
2021-10-24 22:23:44 +02:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
|
|
|
|
(sha256 (base32 "1khlv69q41chgkcs1i7l651hvyx8sz3j9yhjbgky3gpqrgrmz1h6"))
|
|
|
|
))
|
|
|
|
|
2021-11-29 17:37:28 +01:00
|
|
|
(inputs `(("gtk+-2" ,gtk+-2) ;; for sview
|
|
|
|
,@(package-inputs slurm-20.02)
|
|
|
|
|
|
|
|
))
|
|
|
|
)
|
|
|
|
)
|
2021-10-24 22:23:44 +02:00
|
|
|
|
2021-11-22 18:57:04 +01:00
|
|
|
(define-public slurm-20.11-glicid
|
2021-10-24 22:23:44 +02:00
|
|
|
(package
|
2021-11-22 18:57:04 +01:00
|
|
|
(inherit slurm-20.02-glicid)
|
|
|
|
(name "slurm-glicid")
|
2021-10-24 22:23:44 +02:00
|
|
|
(version "20.11.7")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
|
|
|
|
(sha256 (base32 "1fdjihg1x7ks5l77yjv14a4mg6r0v8c3zk1dcxkhrhq3n4dc9nbs"))
|
|
|
|
))
|
|
|
|
))
|
|
|
|
|
2021-11-29 17:08:37 +01:00
|
|
|
(define-public slurm-glicid slurm-20.02-glicid)
|