civodul pushed a commit to branch master
in repository guix.

commit 06e6a161aa21346c5f3cb2dcb76c1f0d989da758
Author: Romain GARBAGE <[email protected]>
AuthorDate: Fri Jul 12 14:00:01 2024 +0200

    gnu: Add openpmix.
    
    * gnu/packages/parallel.scm (openpmix): New variable.
    
    Change-Id: Id23bc710c9b61ede0aebf7e2a18863fbe5fb8304
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/parallel.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 2e00701582..1eae4570a1 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -14,6 +14,7 @@
 ;;; Copyright © 2021 Stefan Reichör <[email protected]>
 ;;; Copyright © 2024 Zheng Junjie <[email protected]>
 ;;; Copyright © 2024 David Elsing <[email protected]>
+;;; Copyright © 2024 Romain Garbage <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -51,6 +52,7 @@
   #: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,31 @@ debug information.
        "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";))))

Reply via email to