mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
9e0472e206
clang-ocl: 5.4.0 → 5.4.1 hipsparse: 5.4.0 → 5.4.1 composable_kernel: unstable-2022-12-08 → unstable-2022-12-15 llvmPackages_rocm.llvm: 5.4.0 → 5.4.1 miopen: 5.4.0 → 5.4.1 miopengemm: 5.4.0 → 5.4.1 rccl: 5.4.0 → 5.4.1 rocalution: 5.4.0 → 5.4.1 hipcub: 5.4.0 → 5.4.1 rocclr: 5.4.0 → 5.4.1 rocfft: 5.4.0 → 5.4.1 rocm-cmake: 5.4.0 → 5.4.1 rocm-comgr: 5.4.0 → 5.4.1 rocm-device-libs: 5.4.0 → 5.4.1 hip: 5.4.0 → 5.4.1 rocblas: 5.4.0 → 5.4.1 rocm-runtime: 5.4.0 → 5.4.1 rocm-opencl-runtime: 5.4.0 → 5.4.1 rocm-thunk: 5.4.0 → 5.4.1 rocprim: 5.4.0 → 5.4.1 rocm-smi: 5.4.0 → 5.4.1 rocminfo: 5.4.0 → 5.4.1 rocsolver: 5.4.0 → 5.4.1 rocrand: 5.4.0 → 5.4.1 rocthrust: 5.4.0 → 5.4.1 rocprofiler: 5.4.0 → 5.4.1 rocwmma: 5.4.0 → 5.4.1 roctracer: 5.4.0 → 5.4.1 rocsparse: 5.4.0 → 5.4.1 tensile: 5.4.0 → 5.4.1
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rocmUpdateScript
|
|
, addOpenGLRunpath
|
|
, cmake
|
|
, rocm-comgr
|
|
, rocm-runtime
|
|
, rocclr
|
|
, glew
|
|
, libX11
|
|
, numactl
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "rocm-opencl-runtime";
|
|
version = "5.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RadeonOpenCompute";
|
|
repo = "ROCm-OpenCL-Runtime";
|
|
rev = "rocm-${finalAttrs.version}";
|
|
hash = "sha256-E1+Y/fgp5b+7H1LN+O1fwVi0/XRCgvsiSxTY3u/q+8I=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
rocm-comgr
|
|
rocm-runtime
|
|
glew
|
|
libX11
|
|
numactl
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DAMD_OPENCL_PATH=${finalAttrs.src}"
|
|
"-DROCCLR_PATH=${rocclr}"
|
|
];
|
|
|
|
dontStrip = true;
|
|
|
|
# Remove clinfo, which is already provided through the
|
|
# `clinfo` package.
|
|
postInstall = ''
|
|
rm -rf $out/bin
|
|
'';
|
|
|
|
# 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/"'
|
|
'';
|
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
name = finalAttrs.pname;
|
|
owner = finalAttrs.src.owner;
|
|
repo = finalAttrs.src.repo;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "OpenCL runtime for AMD GPUs, part of the ROCm stack";
|
|
homepage = "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime";
|
|
license = with licenses; [ asl20 mit ];
|
|
maintainers = with maintainers; [ acowley lovesegfault ] ++ teams.rocm.members;
|
|
platforms = platforms.linux;
|
|
broken = finalAttrs.version != stdenv.cc.version;
|
|
};
|
|
})
|