guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e3ac9a651a7b7b594f77d09ae7329d1a615da2ed
Author: David Elsing <[email protected]>
AuthorDate: Tue Feb 3 21:33:21 2026 +0100

    gnu: Add mxdatagenerator.
    
    * gnu/packages/rocm-libs.scm (mxdatagenerator): New variable.
    
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/rocm-libs.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/rocm-libs.scm b/gnu/packages/rocm-libs.scm
index 9c7f98e58b..6ffd2638fa 100644
--- a/gnu/packages/rocm-libs.scm
+++ b/gnu/packages/rocm-libs.scm
@@ -138,6 +138,26 @@ random numbers on GPUs, in particular via rocRAND for AMD 
GPUs.")
 definitions for hipBLAS and hipBLASLt.")
     (license license:expat)))
 
+(define-public mxdatagenerator
+  (package
+    (name "mxdatagenerator")
+    (version %rocm-version)
+    (source
+     (rocm-library-source
+      name
+      #:location "shared/mxdatagenerator"))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:tests? #f ; tests use a lot of memory
+      #:configure-flags #~'("-DMXDATAGENERATOR_BUILD_TESTING=ON")))
+    (native-inputs (list googletest))
+    (home-page "https://github.com/ROCm/hipBLASLt";)
+    (synopsis "Library for generating AMD GPU kernel assembly")
+    (description "This package contains a library for generating and analyzing
+AMD GPU assembly kernels.")
+    (license (list license:expat))))
+
 (define-public tensile
   (package
     (name "tensile")

Reply via email to