75 lines
1.9 KiB
Nix
75 lines
1.9 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, rocmUpdateScript
|
||
|
, pkg-config
|
||
|
, cmake
|
||
|
, xxd
|
||
|
, rocm-device-libs
|
||
|
, rocm-thunk
|
||
|
, libelf
|
||
|
, 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
|
||
|
libelf
|
||
|
libdrm
|
||
|
numactl
|
||
|
valgrind
|
||
|
libxml2
|
||
|
];
|
||
|
|
||
|
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";
|
||
|
};
|
||
|
})
|