diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2021-08-06 08:23:53 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2021-08-08 16:47:55 +0200 |
commit | dc5755c41133bb303f775e2143a0919240f4562c (patch) | |
tree | 1f6562523e4f8047d1da584e85605c8bccf0b29f | |
parent | 9c083e706329909d41ab13d0721e726031ab78c7 (diff) | |
download | guix-dc5755c41133bb303f775e2143a0919240f4562c.tar.gz guix-dc5755c41133bb303f775e2143a0919240f4562c.zip |
gnu: Add roct-thunk-interface.
* gnu/packages/rocm.scm (roct-thunk-interface): New variable.
-rw-r--r-- | gnu/packages/rocm.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/rocm.scm b/gnu/packages/rocm.scm index 5ecc741d11..4ed4d95d60 100644 --- a/gnu/packages/rocm.scm +++ b/gnu/packages/rocm.scm @@ -147,3 +147,25 @@ oclc, ocml, ockl, opencl, hip and hc.") (description "The Comgr library provides APIs for compiling and inspecting AMDGPU code objects.") (license license:ncsa))) + +(define-public roct-thunk-interface + (package + (name "roct-thunk-interface") + (version %rocm-version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface.git") + (commit (string-append "rocm-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0ffqhrrscmcydfqf61dk58d7nnxk6n2k68jhqfj7a4hvhlphb74f")))) + (build-system cmake-build-system) + (arguments `(#:tests? #f)) ; Not sure how to run tests. + (inputs `(("numactl" ,numactl))) + (home-page "https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface") + (synopsis "Radeon Open Compute Thunk Interface") + (description "User-mode API interfaces used to interact with the ROCk +driver.") + (license license:ncsa))) |