diff options
| author | David Elsing <david.elsing@posteo.net> | 2026-02-03 21:33:21 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-02-10 23:46:35 +0100 |
| commit | e3ac9a651a7b7b594f77d09ae7329d1a615da2ed (patch) | |
| tree | 718ccd4da4f6daed57877dbf7999aaa92295d5e6 /gnu/packages | |
| parent | 99ced1d4329353900916b2f6c2eb50d401b32fc3 (diff) | |
gnu: Add mxdatagenerator.
* gnu/packages/rocm-libs.scm (mxdatagenerator): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/rocm-libs.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/rocm-libs.scm b/gnu/packages/rocm-libs.scm index 9c7f98e58b5..6ffd2638fad 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") |
