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 | bb0ac2721621dc7c59d44715b5687ef6b3bccf0c (patch) | |
| tree | 5cdf42ee421a3c9b0907992b9c6904eb42b5b87c | |
| parent | 2f8b648eac5ae2d6b16098bbf4176071950dd732 (diff) | |
gnu: Add hipblas-common.
* gnu/packages/rocm-libs.scm (hipblas-common): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -rw-r--r-- | gnu/packages/rocm-libs.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/rocm-libs.scm b/gnu/packages/rocm-libs.scm index e151138bb7d..8b7268c8152 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))) |
