diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2021-08-06 08:29:12 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2021-08-08 16:47:56 +0200 |
commit | 91ce17a53236578f8055a2588460047741983925 (patch) | |
tree | 9372d0f93794d17948e19def9a2253b50efb19c8 | |
parent | c0f10a5dd4be70a990223b707be1067f6982c4ae (diff) |
gnu: Add rocminfo.
* gnu/packages/rocm.scm (rocminfo): New variable.
-rw-r--r-- | gnu/packages/rocm.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/rocm.scm b/gnu/packages/rocm.scm index 07e395c9f0..0cf5a34b46 100644 --- a/gnu/packages/rocm.scm +++ b/gnu/packages/rocm.scm @@ -304,3 +304,24 @@ allows runtimes to work on Windows as well as on Linux without much effort.") (description "OpenCL 2.0 compatible language runtime, supporting offline and in-process/in-memory compilation.") (license license:ncsa))) + +(define-public rocminfo + (package + (name "rocminfo") + (version %rocm-version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/RadeonOpenCompute/rocminfo.git") + (commit (string-append "rocm-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0pcm308vwkjrwnrk507iya20mkil8j0vx699w9jk2gas4n4jvkcz")))) + (build-system cmake-build-system) + (arguments `(#:tests? #f)) ; No tests. + (inputs `(("rocr-runtime" ,rocr-runtime))) + (home-page "https://github.com/RadeonOpenCompute/rocminfo") + (synopsis "ROCm Application for Reporting System Info") + (description #f) + (license license:ncsa))) |