1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02:00

gnu: Add hipblas-common.

* gnu/packages/rocm-libs.scm (hipblas-common): 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 2f8b648eac
commit bb0ac27216
+14
View File
@@ -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)))