guix_mirror_bot pushed a commit to branch master
in repository guix.

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

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

diff --git a/gnu/packages/rocm-libs.scm b/gnu/packages/rocm-libs.scm
index e151138bb7..8b7268c815 100644
--- a/gnu/packages/rocm-libs.scm
+++ b/gnu/packages/rocm-libs.scm
@@ -118,3 +118,17 @@ pseudorandom and quasirandom number generation in HIP.")
     (description "This package contains a wrapper library for generating
 random numbers on GPUs, in particular via rocRAND for AMD GPUs.")
     (license license:expat)))
+
+(define-public hipblas-common
+  (package
+    (name "hipblas-common")
+    (version %rocm-version)
+    (source (rocm-library-source "hipblas-common"))
+    (build-system cmake-build-system)
+    (arguments '(#:tests? #f)) ; requires GPU
+    (native-inputs (list rocm-cmake))
+    (home-page %rocm-libraries-url)
+    (synopsis "Common files shared by hipBLAS and hipBLASLt")
+    (description "hipBLAS-common is a header-only library with common
+definitions for hipBLAS and hipBLASLt.")
+    (license license:expat)))

Reply via email to