b00586cb26
'RadeonOpenCompute', 'ROCm-Developer-Tools', 'ROCmSoftwarePlatform', 'GPUOpen-ProfessionalCompute-Libraries' -> 'ROCm'
78 lines
1.9 KiB
Nix
78 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 = "5.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ROCm";
|
|
repo = "ROCR-Runtime";
|
|
rev = "rocm-${finalAttrs.version}";
|
|
hash = "sha256-D7Ahan5cxDhqPtV5iDDNys0A4FlxQ9oVRa2EeMoY5Qk=";
|
|
};
|
|
|
|
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
|
|
|
|
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'
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
rm -rf $out/hsa/*
|
|
ln -s $out/{include,lib} $out/hsa
|
|
'';
|
|
|
|
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 "6.0.0";
|
|
};
|
|
})
|