This commit is contained in:
Yann Dupont 2022-03-22 23:52:46 +01:00
parent f20f7b7588
commit 4ea76562d7
2 changed files with 15 additions and 18 deletions

View file

@ -21,21 +21,6 @@
)
)
(define-public ucx-upstream-1.11.2
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream" ))
(version "1.11.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy"))
)
)
)
)
(define-public ucx-upstream-1.12.0
(package
(inherit gnu:ucx)
@ -51,5 +36,17 @@
)
)
(define local-ucx ucx-upstream-1.12.0)
(define-public ucx-latest (latest-version local-ucx gnu:ucx))
(define-public ucx-latest-glicid
(transform-package
(
(instead-of "rdma-core" rdma-core-latest)
ucx-latest
) "glicid"
)
)

View file

@ -63,7 +63,7 @@
(define-public openmpi-glicid-ucx
(transform-package
(
(instead-of "ucx" ucx-latest) openmpi-glicid
(instead-of "ucx" ucx-latest-glicid) openmpi-glicid
) "ucx"
)
)
@ -80,7 +80,7 @@
(define-public openmpi-glicid-libfabric-ucx
(transform-package
(
(instead-of "ucx" ucx-latest)
(instead-of "ucx" ucx-latest-glicid)
openmpi-glicid-libfabric
) "ucx"
)
@ -89,7 +89,7 @@
(define-public openmpi-glicid-libfabric-rdma-ucx
(transform-package
(
(instead-of "ucx" ucx-latest)
(instead-of "ucx" ucx-latest-glicid)
openmpi-glicid-libfabric-rdma
) "ucx"
)