mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 15:10:16 -05:00
gnu: Add roct-thunk-interface.
* gnu/packages/rocm.scm (roct-thunk-interface): New variable.
This commit is contained in:
parent
9c083e7063
commit
dc5755c411
1 changed files with 22 additions and 0 deletions
|
@ -147,3 +147,25 @@ (define-public rocm-comgr
|
||||||
(description "The Comgr library provides APIs for compiling and inspecting
|
(description "The Comgr library provides APIs for compiling and inspecting
|
||||||
AMDGPU code objects.")
|
AMDGPU code objects.")
|
||||||
(license license:ncsa)))
|
(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)))
|
||||||
|
|
Loading…
Reference in a new issue