guix_mirror_bot pushed a commit to branch hpc-team
in repository guix.
commit 437e9098b5c234270b281b02690b478be273c175
Author: Cayetano Santos <[email protected]>
AuthorDate: Sat Feb 14 09:13:52 2026 +0100
gnu: Add rocm-validationsuite.
* gnu/packages/rocm-libs.scm (rocm-validationsuite): New variable.
Merges guix/guix!6408
Change-Id: Id59bba55d34efcf401e70277de34f2c16d1f92be
---
gnu/packages/rocm-libs.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/rocm-libs.scm b/gnu/packages/rocm-libs.scm
index 1017cc2474..da3b2eb859 100644
--- a/gnu/packages/rocm-libs.scm
+++ b/gnu/packages/rocm-libs.scm
@@ -325,6 +325,28 @@ acts as the performance backbone for a wide variety of
compute
applications running on AMD GPUs.")
(license license:expat)))
+(define-public rocm-validationsuite
+ (package
+ (name "rocm-validationsuite")
+ (version %rocm-version)
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ROCm/rocmvalidationsuite/")
+ (commit (string-append "rocm-" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1l577sd88f4f46am6w81n7rbswx39zy602xbqrk3zqb156k14s2s"))))
+ (build-system cmake-build-system)
+ (inputs (list rocblas))
+ (home-page "https://rocm.docs.amd.com/projects/ROCmValidationSuite/")
+ (synopsis "ROCm system validation and diagnostics")
+ (description "ROCm monitor for stress testing, detection and
+troubleshooting issues impacting AMD GPUS in HPC environments.")
+ (license license:expat)))
+
(define hipblaslt-supported-targets
(list "gfx1100"
"gfx1101"