2022-11-04 12:27:35 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2022-11-27 09:42:12 +00:00
|
|
|
, writeScript
|
2022-11-04 12:27:35 +00:00
|
|
|
, cmake
|
|
|
|
, rocm-cmake
|
|
|
|
, rocm-runtime
|
|
|
|
, rocm-device-libs
|
|
|
|
, rocm-comgr
|
|
|
|
, rocm-smi
|
|
|
|
, hip
|
|
|
|
, gtest
|
|
|
|
, chrpath ? null
|
|
|
|
, buildTests ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert buildTests -> chrpath != null;
|
|
|
|
|
2022-11-27 09:42:12 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2022-11-04 12:27:35 +00:00
|
|
|
pname = "rccl";
|
2022-11-27 09:42:12 +00:00
|
|
|
repoVersion = "2.12.10";
|
|
|
|
rocmVersion = "5.3.3";
|
|
|
|
version = "${finalAttrs.repoVersion}-${finalAttrs.rocmVersion}";
|
2022-11-04 12:27:35 +00:00
|
|
|
|
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
"test"
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ROCmSoftwarePlatform";
|
|
|
|
repo = "rccl";
|
2022-11-27 09:42:12 +00:00
|
|
|
rev = "rocm-${finalAttrs.rocmVersion}";
|
2022-11-04 12:27:35 +00:00
|
|
|
hash = "sha256-whRXGD8oINDYhFs8+hEWKWoGNqacGlyy7xi8peA8Qsk=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
rocm-cmake
|
|
|
|
hip
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
rocm-runtime
|
|
|
|
rocm-device-libs
|
|
|
|
rocm-comgr
|
|
|
|
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-11-27 09:42:12 +00:00
|
|
|
passthru.updateScript = writeScript "update.sh" ''
|
|
|
|
#!/usr/bin/env nix-shell
|
|
|
|
#!nix-shell -i bash -p curl jq common-updater-scripts
|
|
|
|
json="$(curl -sL "https://api.github.com/repos/ROCmSoftwarePlatform/rccl/releases?per_page=1")"
|
|
|
|
repoVersion="$(echo "$json" | jq '.[0].name | split(" ") | .[1]' --raw-output)"
|
|
|
|
rocmVersion="$(echo "$json" | jq '.[0].tag_name | split("-") | .[1]' --raw-output)"
|
|
|
|
update-source-version rccl "$repoVersion" --ignore-same-hash --version-key=repoVersion
|
|
|
|
update-source-version rccl "$rocmVersion" --ignore-same-hash --version-key=rocmVersion
|
|
|
|
'';
|
|
|
|
|
2022-11-04 12:27:35 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "ROCm communication collectives library";
|
|
|
|
homepage = "https://github.com/ROCmSoftwarePlatform/rccl";
|
|
|
|
license = with licenses; [ bsd2 bsd3 ];
|
2022-11-27 09:42:12 +00:00
|
|
|
maintainers = teams.rocm.members;
|
|
|
|
broken = finalAttrs.rocmVersion != hip.version;
|
2022-11-04 12:27:35 +00:00
|
|
|
};
|
2022-11-27 09:42:12 +00:00
|
|
|
})
|