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:33 +0100 |
| commit | ec1eedd92fbd9ba7b272380200f3f7014bfb5257 (patch) | |
| tree | 22358f9710cb1fd39873a4ee4bfd804f89b6c70e /gnu | |
| parent | a5c0ce3fc333a15b4a90174bc8da20bdd6c9fd62 (diff) | |
gnu: Add rocm-core.
* gnu/packages/rocm.scm (rocm-core): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/rocm.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/rocm.scm b/gnu/packages/rocm.scm index d5deb98d019..49179051117 100644 --- a/gnu/packages/rocm.scm +++ b/gnu/packages/rocm.scm @@ -569,3 +569,27 @@ command-line tool, @command{amd-smi}, which can be used to do the same.") modification of the intercept API table(s) of the HSA/HIP/ROCTx runtime libraries by the ROCprofiler (v2) library.") (license license:expat))) + +(define-public rocm-core + (package + (name "rocm-core") + (version %rocm-version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ROCm/rocm-core") + (commit (string-append "rocm-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1a0sp50vql4nl6h19frpf1swka8j2hwmy0iaw8l1lbgvpd3hyr6x")))) + (build-system cmake-build-system) + (arguments + (list + #:tests? #f ; no tests + #:configure-flags + `(list ,(string-append "-DROCM_VERSION=" %rocm-version)))) + (home-page "https://github.com/Rocm/rocm-core") + (synopsis "Utility to get the ROCm release version") + (description "Utility to get the ROCm release version") + (license license:expat))) |
