rocm-runtime: init at 3.5.0
This commit is contained in:
parent
466d74c4ba
commit
d2d402a695
2 changed files with 43 additions and 0 deletions
41
pkgs/development/libraries/rocm-runtime/default.nix
Normal file
41
pkgs/development/libraries/rocm-runtime/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{ stdenv, fetchFromGitHub, cmake, elfutils, rocm-thunk }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "rocm-runtime";
|
||||||
|
version = "3.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "RadeonOpenCompute";
|
||||||
|
repo = "ROCR-Runtime";
|
||||||
|
rev = "rocm-${version}";
|
||||||
|
sha256 = "028x1f0if6lw41cpfpysp82ikp6c3fdxxd2a6ixs0vpm4424svb1";
|
||||||
|
};
|
||||||
|
|
||||||
|
sourceRoot = "source/src";
|
||||||
|
|
||||||
|
buildInputs = [ cmake elfutils ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DCMAKE_PREFIX_PATH=${rocm-thunk}" ];
|
||||||
|
|
||||||
|
# Use the ROCR_EXT_DIR environment variable to try to find
|
||||||
|
# binary-only extension libraries. This environment variable is set
|
||||||
|
# by the `rocr-ext` derivation. If that derivation is not in scope,
|
||||||
|
# then the extension libraries are not loaded. Without this edit, we
|
||||||
|
# would have to rely on LD_LIBRARY_PATH to let the HSA runtime
|
||||||
|
# discover the shared libraries.
|
||||||
|
patchPhase = ''
|
||||||
|
sed 's/\(k\(Image\|Finalizer\)Lib\[os_index(os::current_os)\]\)/os::GetEnvVar("ROCR_EXT_DIR") + "\/" + \1/g' -i core/runtime/runtime.cpp
|
||||||
|
'';
|
||||||
|
|
||||||
|
fixupPhase = ''
|
||||||
|
rm -r $out/lib $out/include
|
||||||
|
mv $out/hsa/lib $out/hsa/include $out
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Platform runtime for ROCm";
|
||||||
|
homepage = "https://github.com/RadeonOpenCompute/ROCR-Runtime";
|
||||||
|
license = with licenses; [ ncsa ];
|
||||||
|
maintainers = with maintainers; [ danieldk ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9233,6 +9233,8 @@ in
|
||||||
|
|
||||||
rgbds = callPackage ../development/compilers/rgbds { };
|
rgbds = callPackage ../development/compilers/rgbds { };
|
||||||
|
|
||||||
|
rocm-runtime = callPackage ../development/libraries/rocm-runtime { };
|
||||||
|
|
||||||
rocm-thunk = callPackage ../development/libraries/rocm-thunk { };
|
rocm-thunk = callPackage ../development/libraries/rocm-thunk { };
|
||||||
|
|
||||||
rtags = callPackage ../development/tools/rtags {
|
rtags = callPackage ../development/tools/rtags {
|
||||||
|
|
Loading…
Reference in a new issue