2022-12-12 23:36:53 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-07-10 18:13:02 +00:00
|
|
|
, fetchFromGitHub
|
2022-12-04 00:25:41 +00:00
|
|
|
, rocmUpdateScript
|
2020-07-10 18:13:02 +00:00
|
|
|
, addOpenGLRunpath
|
|
|
|
, cmake
|
2022-12-12 23:36:53 +00:00
|
|
|
, rocm-comgr
|
|
|
|
, rocm-runtime
|
|
|
|
, rocclr
|
2020-08-21 06:41:17 +00:00
|
|
|
, glew
|
2020-07-10 18:13:02 +00:00
|
|
|
, libX11
|
2021-11-08 10:08:36 +00:00
|
|
|
, numactl
|
2020-07-10 18:13:02 +00:00
|
|
|
}:
|
|
|
|
|
2022-11-24 02:17:04 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2020-07-10 18:13:02 +00:00
|
|
|
pname = "rocm-opencl-runtime";
|
2023-03-24 04:21:31 +00:00
|
|
|
version = "5.4.4";
|
2020-07-10 18:13:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "RadeonOpenCompute";
|
|
|
|
repo = "ROCm-OpenCL-Runtime";
|
2022-11-24 02:17:04 +00:00
|
|
|
rev = "rocm-${finalAttrs.version}";
|
2022-12-04 00:26:46 +00:00
|
|
|
hash = "sha256-E1+Y/fgp5b+7H1LN+O1fwVi0/XRCgvsiSxTY3u/q+8I=";
|
2020-07-10 18:13:02 +00:00
|
|
|
};
|
|
|
|
|
2022-12-12 23:36:53 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2020-07-10 18:13:02 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2022-12-12 23:36:53 +00:00
|
|
|
rocm-comgr
|
|
|
|
rocm-runtime
|
2020-08-21 06:41:17 +00:00
|
|
|
glew
|
2020-07-10 18:13:02 +00:00
|
|
|
libX11
|
2021-11-08 10:08:36 +00:00
|
|
|
numactl
|
2020-07-10 18:13:02 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2022-11-24 02:17:04 +00:00
|
|
|
"-DAMD_OPENCL_PATH=${finalAttrs.src}"
|
2021-11-08 10:08:36 +00:00
|
|
|
"-DROCCLR_PATH=${rocclr}"
|
2020-07-10 18:13:02 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
2020-08-21 12:33:26 +00:00
|
|
|
# Remove clinfo, which is already provided through the
|
|
|
|
# `clinfo` package.
|
|
|
|
postInstall = ''
|
|
|
|
rm -rf $out/bin
|
|
|
|
'';
|
|
|
|
|
2020-07-10 18:13:02 +00:00
|
|
|
# Fix the ICD installation path for NixOS
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace khronos/icd/loader/linux/icd_linux.c \
|
|
|
|
--replace 'ICD_VENDOR_PATH' '"${addOpenGLRunpath.driverLink}/etc/OpenCL/vendors/"'
|
|
|
|
'';
|
|
|
|
|
2022-12-04 00:25:41 +00:00
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
|
|
name = finalAttrs.pname;
|
|
|
|
owner = finalAttrs.src.owner;
|
|
|
|
repo = finalAttrs.src.repo;
|
|
|
|
};
|
2021-09-08 14:14:59 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-07-10 18:13:02 +00:00
|
|
|
description = "OpenCL runtime for AMD GPUs, part of the ROCm stack";
|
|
|
|
homepage = "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime";
|
|
|
|
license = with licenses; [ asl20 mit ];
|
2022-11-24 01:29:33 +00:00
|
|
|
maintainers = with maintainers; [ acowley lovesegfault ] ++ teams.rocm.members;
|
2020-07-10 18:13:02 +00:00
|
|
|
platforms = platforms.linux;
|
2023-01-15 15:59:25 +00:00
|
|
|
broken = versions.minor finalAttrs.version != versions.minor stdenv.cc.version;
|
2020-07-10 18:13:02 +00:00
|
|
|
};
|
2022-11-24 02:17:04 +00:00
|
|
|
})
|