[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#72062] [PATCH v2 1/5] gnu: Add openpmix.
From: |
Romain GARBAGE |
Subject: |
[bug#72062] [PATCH v2 1/5] gnu: Add openpmix. |
Date: |
Fri, 12 Jul 2024 13:47:02 +0200 |
* gnu/packages/parallel.scm (openpmix): New variable.
Change-Id: Id23bc710c9b61ede0aebf7e2a18863fbe5fb8304
---
gnu/packages/parallel.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index a16a0d8689..4a57e85e6c 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -14,6 +14,7 @@
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2024 David Elsing <david.elsing@posteo.net>
+;;; Copyright © 2024 Romain Garbage <romain.garbage@inria.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -51,6 +52,7 @@ (define-module (gnu packages parallel)
#:use-module (gnu packages documentation)
#:use-module (gnu packages flex)
#:use-module (gnu packages freeipmi)
+ #:use-module (gnu packages libevent)
#:use-module (gnu packages linux)
#:use-module (gnu packages maths)
#:use-module (gnu packages mpi)
@@ -612,3 +614,33 @@ (define-public psimd
"This header-only C++ library provides a portable interface to
single-instruction multiple-data (SIMD) intrinsics.")
(license license:expat))))
+
+(define-public openpmix
+ (package
+ (name "openpmix")
+ (version "4.2.8")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/openpmix/openpmix/releases/download/v"
+ version "/pmix-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "1j9xlhqrrmgjdkwakamn78y5gj756adi53hn25zksgr3is3l5d09"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:configure-flags #~(list (string-append "--with-hwloc="
+ (ungexp (this-package-input
"hwloc") "lib")))))
+ (inputs (list libevent
+ `(,hwloc "lib")))
+ (native-inputs (list perl
+ python))
+ (synopsis "PMIx library")
+ (description
+ "PMIx is an application programming interface standard that provides
+libraries and programming models with portable and well-defined access
+to commonly needed services in distributed and parallel computing
+systems.")
+ (home-page "https://pmix.org/")
+ ;; The provided license is kind of BSD-style but specific.
+ (license (license:fsf-free
"https://github.com/openpmix/openpmix?tab=License-1-ov-file#License-1-ov-file"))))
--
2.45.1
- [bug#72062] [PATCH 0/4] Add OpenMPI 5.x, Romain GARBAGE, 2024/07/11
- [bug#72062] [PATCH 1/4] gnu: Add openpmix., Romain GARBAGE, 2024/07/11
- [bug#72062] [PATCH 0/4] Add OpenMPI 5.x, Romain GARBAGE, 2024/07/12
- [bug#72062] [PATCH 0/4] Add OpenMPI 5.x, Ludovic Courtès, 2024/07/12
- [bug#72062] [PATCH v2 0/5] Add OpenMPI 5.x., Romain GARBAGE, 2024/07/12
- [bug#72062] [PATCH v3 0/5] Add OpenMPI 5.x., Romain GARBAGE, 2024/07/12
- [bug#72062] [PATCH v3 1/5] gnu: Add openpmix., Romain GARBAGE, 2024/07/12
- [bug#72062] [PATCH v3 4/5] gnu: Add openmpi-5., Romain GARBAGE, 2024/07/12
- [bug#72062] [PATCH v3 5/5] gnu: openmpi: Set default version to 4.x., Romain GARBAGE, 2024/07/12
- [bug#72062] [PATCH v3 3/5] gnu: slurm: Add PMIx support., Romain GARBAGE, 2024/07/12
- [bug#72062] [PATCH v3 2/5] gnu: Add prrte., Romain GARBAGE, 2024/07/12