b7c99f2b88
Not useful on its own after upgrading to ROCm 5 in commit 01444b297bb3ed28bb33cd01604aadb98bb65333. * gnu/packages/rocm.scm (rocclr-4): Remove variable.
305 lines
12 KiB
Scheme
305 lines
12 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2021 Lars-Dominik Braun <lars@6xq.net>
|
|
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
|
;;;
|
|
;;; This program is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; This program is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (gnu packages rocm)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix download)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix utils)
|
|
#:use-module (guix git-download)
|
|
#:use-module (guix build-system cmake)
|
|
#:use-module (gnu packages)
|
|
#:use-module (gnu packages elf)
|
|
#:use-module (gnu packages gcc)
|
|
#:use-module (gnu packages gl)
|
|
#:use-module (gnu packages linux)
|
|
#:use-module (gnu packages llvm)
|
|
#:use-module (gnu packages opencl)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages version-control)
|
|
#:use-module (gnu packages vim)
|
|
#:use-module (gnu packages xdisorg))
|
|
|
|
;; The components are tightly integrated and can only be upgraded as a unit. If
|
|
;; you want to upgrade ROCm, bump this version number and update hashes below.
|
|
(define %rocm-version "5.1.3")
|
|
|
|
(define-public rocm-cmake
|
|
(package
|
|
(name "rocm-cmake")
|
|
(version %rocm-version)
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/RadeonOpenCompute/rocm-cmake.git")
|
|
(commit (string-append "rocm-" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1bn3l04qnc1ls9abs15s1sgsrwmkfk0g8jgdjqshrcr3ab8ffcpf"))))
|
|
(build-system cmake-build-system)
|
|
(arguments `(#:tests? #f)) ; Tests try to use git commit
|
|
(native-inputs (list git))
|
|
(home-page "https://github.com/RadeonOpenCompute/rocm-cmake")
|
|
(synopsis "ROCm cmake modules")
|
|
(description "ROCm cmake modules provides cmake modules for common build
|
|
tasks needed for the ROCM software stack.")
|
|
(license license:ncsa)))
|
|
|
|
(define-public rocm-device-libs
|
|
(package
|
|
(name "rocm-device-libs")
|
|
(version %rocm-version)
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/RadeonOpenCompute/ROCm-Device-Libs.git")
|
|
(commit (string-append "rocm-" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"07vkrxxc49i72r0lcl6dap0qcw1bignsw920rj4h1mac3bwa8q4j"))))
|
|
(build-system cmake-build-system)
|
|
(arguments
|
|
`(#:configure-flags
|
|
(list "-DCMAKE_SKIP_BUILD_RPATH=FALSE"
|
|
"-DCMAKE_BUILD_WITH_INSTALL_RPATH=FALSE")))
|
|
(inputs `(("llvm" ,llvm-for-rocm)))
|
|
(home-page "https://github.com/RadeonOpenCompute/ROCm-Device-Libs")
|
|
(synopsis "ROCm Device libraries")
|
|
(description "AMD-specific device-side language runtime libraries, namely
|
|
oclc, ocml, ockl, opencl, hip and hc.")
|
|
(license license:ncsa)))
|
|
|
|
(define-public rocm-comgr
|
|
(package
|
|
(name "rocm-comgr")
|
|
(version %rocm-version)
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/RadeonOpenCompute/ROCm-CompilerSupport.git")
|
|
(commit (string-append "rocm-" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1achb3216cbm7x2d05xj7j7ivn24y11q2d2p5whw3v4ykgfqql6f"))
|
|
(patches
|
|
(search-patches "rocm-comgr-3.1.0-dependencies.patch"))))
|
|
(build-system cmake-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'chdir
|
|
(lambda _
|
|
(chdir "lib/comgr"))))))
|
|
(inputs
|
|
`(("rocm-device-libs" ,rocm-device-libs)
|
|
("llvm" ,llvm-for-rocm)
|
|
("lld" ,lld)))
|
|
(home-page "https://github.com/RadeonOpenCompute/ROCm-CompilerSupport")
|
|
(synopsis "ROCm Code Object Manager")
|
|
(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
|
|
"0k5bchq1jhgraqrhj9q47b45n33wnd2ipwrrj39q51jzxmyyzxj2"))))
|
|
(build-system cmake-build-system)
|
|
(arguments `(#:tests? #f)) ; Not sure how to run tests.
|
|
(inputs (list libdrm numactl))
|
|
(native-inputs (list `(,gcc "lib") pkg-config))
|
|
(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)))
|
|
|
|
(define-public rocr-runtime
|
|
(package
|
|
(name "rocr-runtime")
|
|
(version %rocm-version)
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/RadeonOpenCompute/ROCR-Runtime.git")
|
|
(commit (string-append "rocm-" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1j1cy64w13plgsy20mir4xm6x4xnwkyil3g03xnda6ynhd7bkhv7"))))
|
|
(build-system cmake-build-system)
|
|
(arguments
|
|
`(#:configure-flags
|
|
`(,(string-append
|
|
"-DBITCODE_DIR="
|
|
(assoc-ref %build-inputs "rocm-device-libs")
|
|
"/amdgcn/bitcode/"))
|
|
#:tests? #f ; No tests.
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'chdir
|
|
(lambda _
|
|
(chdir "src"))))))
|
|
(inputs
|
|
`(("libelf" ,libelf)
|
|
("numactl" ,numactl)
|
|
("llvm" ,llvm-for-rocm)
|
|
("roct-thunk-interface" ,roct-thunk-interface)
|
|
("rocm-device-libs" ,rocm-device-libs))) ; For bitcode.
|
|
(native-inputs (list xxd))
|
|
(home-page "https://github.com/RadeonOpenCompute/ROCR-Runtime")
|
|
(synopsis "ROCm Platform Runtime")
|
|
(description "User-mode API interfaces and libraries necessary for host
|
|
applications to launch compute kernels to available HSA ROCm kernel agents.")
|
|
(license license:ncsa)))
|
|
|
|
;; This is the source only for ROCclr as from v4.5 it should only be built as
|
|
;; part of a client. A warning is output if attempting to build stand-alone
|
|
;; and there is no install. The previous version is kept as rocclr-4.
|
|
(define rocclr-src
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/ROCm-Developer-Tools/ROCclr.git")
|
|
(commit (string-append "rocm-" %rocm-version))))
|
|
(sha256
|
|
(base32
|
|
"0x1frzpz9j1s516vscbdm9g5cqirvv5w7wmq2kyljcygnci7yqar"))))
|
|
|
|
(define-public rocm-opencl-runtime
|
|
(package
|
|
(name "rocm-opencl-runtime")
|
|
(version %rocm-version)
|
|
(home-page "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url home-page)
|
|
(commit (string-append "rocm-" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1rirvc8h0ahicw1vw4js4jq5gw25x47gmg3gczmyz97c72wvgfiv"))
|
|
(patches
|
|
(search-patches
|
|
;; Do not install libOpenCL, which ocl-icd provides.
|
|
"rocm-opencl-runtime-4.3-noopencl.patch"
|
|
;; Guix includes a program clinfo already.
|
|
"rocm-opencl-runtime-4.3-noclinfo.patch"))))
|
|
(build-system cmake-build-system)
|
|
(arguments
|
|
(list
|
|
#:tests? #f ; Not sure how to run them.
|
|
#:configure-flags
|
|
#~(list
|
|
(string-append "-DAMD_OPENCL_PATH=" #$(package-source this-package))
|
|
;; The ROCclr source is needed to build the runtime.
|
|
(string-append "-DROCCLR_PATH=" #$rocclr-src)
|
|
(string-append "-DROCM_PATH=" #$output))
|
|
#:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-after 'install 'create-icd
|
|
;; Manually install ICD, which simply consists of dumping
|
|
;; the path of the .so into the correct file.
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((vendors (string-append #$output "/etc/OpenCL/vendors"))
|
|
(sopath (string-append #$output "/lib/libamdocl64.so")))
|
|
(mkdir-p vendors)
|
|
(with-output-to-file (string-append vendors "/amdocl64.icd")
|
|
(lambda _ (display sopath)))))))))
|
|
(inputs
|
|
(list glew
|
|
mesa
|
|
numactl
|
|
opencl-icd-loader
|
|
rocm-comgr
|
|
rocr-runtime))
|
|
(synopsis "ROCm OpenCL Runtime")
|
|
(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
|
|
"0hdfbvn55h5lk5s8vqlmri5r94vlas8v8yjxwd9d70igslk0kr67"))))
|
|
(build-system cmake-build-system)
|
|
(arguments
|
|
`(#:tests? #f ; No tests.
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'patch-binary-paths
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(substitute* "rocminfo.cc"
|
|
(("lsmod")
|
|
(string-append (assoc-ref inputs "kmod") "/bin/lsmod"))
|
|
(("grep") (which "grep"))))))))
|
|
(inputs
|
|
(list rocr-runtime kmod))
|
|
(home-page "https://github.com/RadeonOpenCompute/rocminfo")
|
|
(synopsis "ROCm Application for Reporting System Info")
|
|
(description "List @acronym{HSA,Heterogeneous System Architecture} Agents
|
|
available to ROCm and show their properties.")
|
|
(license license:ncsa)))
|
|
|
|
(define-public rocm-bandwidth-test
|
|
(package
|
|
(name "rocm-bandwidth-test")
|
|
(version %rocm-version)
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/RadeonOpenCompute/rocm_bandwidth_test.git")
|
|
(commit (string-append "rocm-" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0rnn2ms68mvzpcp31dk304sfqnv352i7vb48k7rw3qjahhrjm48c"))))
|
|
(build-system cmake-build-system)
|
|
(arguments `(#:tests? #f)) ; No tests.
|
|
(inputs (list rocr-runtime))
|
|
(home-page "https://github.com/RadeonOpenCompute/rocm_bandwidth_test")
|
|
(synopsis "Bandwidth test for ROCm")
|
|
(description "RocBandwidthTest is designed to capture the performance
|
|
characteristics of buffer copying and kernel read/write operations. The help
|
|
screen of the benchmark shows various options one can use in initiating
|
|
cop/read/writer operations. In addition one can also query the topology of the
|
|
system in terms of memory pools and their agents.")
|
|
(license license:ncsa)))
|
|
|