fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
84 lines
2.3 KiB
Nix
84 lines
2.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, rocmUpdateScript
|
|
, pkg-config
|
|
, cmake
|
|
, xxd
|
|
, rocm-device-libs
|
|
, rocm-thunk
|
|
, elfutils
|
|
, libdrm
|
|
, numactl
|
|
, valgrind
|
|
, libxml2
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "rocm-runtime";
|
|
version = "6.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ROCm";
|
|
repo = "ROCR-Runtime";
|
|
rev = "rocm-${finalAttrs.version}";
|
|
hash = "sha256-xNMG954HI9SOfvYYB/62fhmm9mmR4I10uHP2nqn9EgI=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/src";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
xxd
|
|
];
|
|
|
|
buildInputs = [
|
|
rocm-thunk
|
|
elfutils
|
|
libdrm
|
|
numactl
|
|
valgrind
|
|
libxml2
|
|
];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "extend-isa-compatibility-check.patch";
|
|
url = "https://salsa.debian.org/rocm-team/rocr-runtime/-/raw/076026d43bbee7f816b81fea72f984213a9ff961/debian/patches/0004-extend-isa-compatibility-check.patch";
|
|
hash = "sha256-cC030zVGS4kNXwaztv5cwfXfVwOldpLGV9iYgEfPEnY=";
|
|
stripLen = 1;
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs image/blit_src/create_hsaco_ascii_file.sh
|
|
patchShebangs core/runtime/trap_handler/create_trap_handler_header.sh
|
|
patchShebangs core/runtime/blit_shaders/create_blit_shader_header.sh
|
|
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace 'hsa/include/hsa' 'include/hsa'
|
|
|
|
# We compile clang before rocm-device-libs, so patch it in afterwards
|
|
# Replace object version: https://github.com/ROCm/ROCR-Runtime/issues/166 (TODO: Remove on LLVM update?)
|
|
substituteInPlace image/blit_src/CMakeLists.txt \
|
|
--replace '-cl-denorms-are-zero' '-cl-denorms-are-zero --rocm-device-lib-path=${rocm-device-libs}/amdgcn/bitcode' \
|
|
--replace '-mcode-object-version=4' '-mcode-object-version=5'
|
|
'';
|
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
name = finalAttrs.pname;
|
|
owner = finalAttrs.src.owner;
|
|
repo = finalAttrs.src.repo;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Platform runtime for ROCm";
|
|
homepage = "https://github.com/ROCm/ROCR-Runtime";
|
|
license = with licenses; [ ncsa ];
|
|
maintainers = with maintainers; [ lovesegfault ] ++ teams.rocm.members;
|
|
platforms = platforms.linux;
|
|
broken = versions.minor finalAttrs.version != versions.minor stdenv.cc.version || versionAtLeast finalAttrs.version "7.0.0";
|
|
};
|
|
})
|