This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch hpc-team
in repository guix.

The following commit(s) were added to refs/heads/hpc-team by this push:
     new 98e1d70d93 gnu: Add rocm-validationsuite.
98e1d70d93 is described below

commit 98e1d70d935fe5f8e133c50181e779a2b0743c20
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 2c7afe2cbe..37e06be05a 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"

Reply via email to