mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
18c88296d0
hip-common: 5.4.1 → 5.4.2 hipblas: 5.4.1 → 5.4.2 hipcc: 5.4.1 → 5.4.2 hip: 5.4.1 → 5.4.2 hipfft: 5.4.1 → 5.4.2 hipcub: 5.4.1 → 5.4.2 hipify: 5.4.1 → 5.4.2 hipfort: 5.4.1 → 5.4.2 clang-ocl: 5.4.1 → 5.4.2 hipsolver: 5.4.1 → 5.4.2 llvmPackages_rocm.llvm: 5.4.1 → 5.4.2 migraphx: 5.4.1 → 5.4.2 miopen: 5.4.1 → 5.4.2 rdc: 5.4.1 → 5.4.2 rccl: 5.4.1 → 5.4.2 rocblas: 5.4.1 → 5.4.2 miopengemm: 5.4.1 → 5.4.2 hipsparse: 5.4.1 → 5.4.2 rocdbgapi: 5.4.1 → 5.4.2 rocfft: 5.4.1 → 5.4.2 rocgdb: 5.4.1 → 5.4.2 rocclr: 5.4.1 → 5.4.2 rocalution: 5.4.1 → 5.4.2 rocm-device-libs: 5.4.1 → 5.4.2 rocm-opencl-runtime: 5.4.1 → 5.4.2 rocm-cmake: 5.4.1 → 5.4.2 rocm-thunk: 5.4.1 → 5.4.2 rocminfo: 5.4.1 → 5.4.2 rocmlir: 5.4.0 → 5.4.1 rocm-comgr: 5.4.1 → 5.4.2 rocprofiler: 5.4.1 → 5.4.2 rocr-debug-agent: 5.4.1 → 5.4.2 rocrand: 5.4.1 → 5.4.2 rocsolver: 5.4.1 → 5.4.2 roctracer: 5.4.1 → 5.4.2 rocm-smi: 5.4.1 → 5.4.2 rocwmma: 5.4.1 → 5.4.2 rocprim: 5.4.1 → 5.4.2 rocsparse: 5.4.1 → 5.4.2 rocthrust: 5.4.1 → 5.4.2 tensile: 5.4.1 → 5.4.2
65 lines
1.8 KiB
Nix
65 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, rocmUpdateScript
|
|
, rocm-comgr
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "rocclr";
|
|
version = "5.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ROCm-Developer-Tools";
|
|
repo = "ROCclr";
|
|
rev = "rocm-${finalAttrs.version}";
|
|
hash = "sha256-tYFoGafOsJYnRQaOLAaFix6tPD0QPTidOtOicPxP2Vk=";
|
|
};
|
|
|
|
patches = [
|
|
# Enable support for gfx8 again
|
|
# See the upstream issue: https://github.com/RadeonOpenCompute/ROCm/issues/1659
|
|
# And the arch patch: https://github.com/rocm-arch/rocm-arch/pull/742
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/John-Gee/rocm-arch/d6812d308fee3caf2b6bb01b4d19fe03a6a0e3bd/rocm-opencl-runtime/enable-gfx800.patch";
|
|
hash = "sha256-59jFDIIsTTZcNns9RyMVWPRUggn/bSlAGrky4quu8B4=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace device/comgrctx.cpp \
|
|
--replace "libamd_comgr.so" "${rocm-comgr}/lib/libamd_comgr.so"
|
|
'';
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
cp -a * $out/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
name = finalAttrs.pname;
|
|
owner = finalAttrs.src.owner;
|
|
repo = finalAttrs.src.repo;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Source package of the Radeon Open Compute common language runtime";
|
|
homepage = "https://github.com/ROCm-Developer-Tools/ROCclr";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lovesegfault ] ++ teams.rocm.members;
|
|
# rocclr seems to have some AArch64 ifdefs, but does not seem
|
|
# to be supported yet by the build infrastructure. Recheck in
|
|
# the future.
|
|
platforms = [ "x86_64-linux" ];
|
|
broken = versions.minor finalAttrs.version != versions.minor stdenv.cc.version;
|
|
};
|
|
})
|