c1c5e46e2f
The tag refers to the same commit as 3.7.0, so the hash did not change.
49 lines
989 B
Nix
49 lines
989 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, addOpenGLRunpath
|
|
, clang-unwrapped
|
|
, cmake
|
|
, xxd
|
|
, elfutils
|
|
, llvm
|
|
, rocm-device-libs
|
|
, rocm-thunk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rocm-runtime";
|
|
version = "3.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RadeonOpenCompute";
|
|
repo = "ROCR-Runtime";
|
|
rev = "rocm-${version}";
|
|
sha256 = "1lm4cbx1d727zll85vjc1kykc72mk82nfhyyhjljv82gd4mnz00c";
|
|
};
|
|
|
|
sourceRoot = "source/src";
|
|
|
|
nativeBuildInputs = [ cmake xxd ];
|
|
|
|
buildInputs = [ clang-unwrapped elfutils llvm ];
|
|
|
|
cmakeFlags = [
|
|
"-DBITCODE_DIR=${rocm-device-libs}/lib"
|
|
"-DCMAKE_PREFIX_PATH=${rocm-thunk}"
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs image/blit_src/create_hsaco_ascii_file.sh
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
rm -rf $out/hsa
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Platform runtime for ROCm";
|
|
homepage = "https://github.com/RadeonOpenCompute/ROCR-Runtime";
|
|
license = with licenses; [ ncsa ];
|
|
maintainers = with maintainers; [ danieldk ];
|
|
};
|
|
}
|