2022-10-24 13:03:02 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2022-12-04 00:25:41 +00:00
|
|
|
, rocmUpdateScript
|
2022-10-24 13:03:02 +00:00
|
|
|
, cmake
|
|
|
|
, rocm-cmake
|
|
|
|
, rocm-smi
|
|
|
|
, hip
|
|
|
|
, gtest
|
2022-11-28 07:18:25 +00:00
|
|
|
, chrpath
|
2022-10-24 13:03:02 +00:00
|
|
|
, buildTests ? false
|
|
|
|
}:
|
|
|
|
|
2022-11-24 02:17:04 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2022-10-24 13:03:02 +00:00
|
|
|
pname = "rccl";
|
2023-03-04 18:59:01 +00:00
|
|
|
version = "5.4.3";
|
2022-10-24 13:03:02 +00:00
|
|
|
|
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
"test"
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ROCmSoftwarePlatform";
|
|
|
|
repo = "rccl";
|
2022-11-28 11:53:23 +00:00
|
|
|
rev = "rocm-${finalAttrs.version}";
|
2023-01-15 16:04:53 +00:00
|
|
|
hash = "sha256-hQTzaiPMo5FAVScmxV0iNhy80uJ1xvx/kzlbfwROOs4=";
|
2022-10-24 13:03:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
rocm-cmake
|
|
|
|
hip
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
rocm-smi
|
|
|
|
gtest
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
chrpath
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_C_COMPILER=hipcc"
|
|
|
|
"-DCMAKE_CXX_COMPILER=hipcc"
|
|
|
|
# Manually define CMAKE_INSTALL_<DIR>
|
|
|
|
# See: https://github.com/NixOS/nixpkgs/pull/197838
|
|
|
|
"-DCMAKE_INSTALL_BINDIR=bin"
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
"-DBUILD_TESTS=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Replace the manually set parallel jobs to NIX_BUILD_CORES
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace CMakeLists.txt \
|
|
|
|
--replace "8 P" "$NIX_BUILD_CORES P" \
|
|
|
|
--replace "8)" "$NIX_BUILD_CORES)"
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = lib.optionalString buildTests ''
|
|
|
|
mkdir -p $test/bin
|
|
|
|
mv $out/bin/* $test/bin
|
|
|
|
rmdir $out/bin
|
|
|
|
'';
|
|
|
|
|
2022-12-04 00:25:41 +00:00
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
|
|
name = finalAttrs.pname;
|
|
|
|
owner = finalAttrs.src.owner;
|
|
|
|
repo = finalAttrs.src.repo;
|
|
|
|
};
|
2022-11-22 14:13:49 +00:00
|
|
|
|
2022-10-24 13:03:02 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "ROCm communication collectives library";
|
|
|
|
homepage = "https://github.com/ROCmSoftwarePlatform/rccl";
|
|
|
|
license = with licenses; [ bsd2 bsd3 ];
|
2022-11-24 01:24:39 +00:00
|
|
|
maintainers = teams.rocm.members;
|
2023-01-18 08:25:46 +00:00
|
|
|
platforms = platforms.linux;
|
2023-01-15 15:59:25 +00:00
|
|
|
broken = versions.minor finalAttrs.version != versions.minor hip.version;
|
2022-10-24 13:03:02 +00:00
|
|
|
};
|
2022-11-24 02:17:04 +00:00
|
|
|
})
|