1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add mxdatagenerator.

* gnu/packages/rocm-libs.scm (mxdatagenerator): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
David Elsing
2026-02-03 21:33:21 +01:00
committed by Ludovic Courtès
parent 99ced1d432
commit e3ac9a651a

View File

@@ -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")