2022-11-04 12:27:35 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2022-12-17 10:02:37 +00:00
|
|
|
, rocmUpdateScript
|
2022-11-04 12:27:35 +00:00
|
|
|
, cmake
|
|
|
|
, rocm-cmake
|
|
|
|
, rocprim
|
2023-10-19 13:55:26 +00:00
|
|
|
, clr
|
2022-12-02 08:20:57 +00:00
|
|
|
, gtest
|
|
|
|
, gbenchmark
|
2022-11-04 12:27:35 +00:00
|
|
|
, buildTests ? false
|
|
|
|
, buildBenchmarks ? false
|
2023-10-19 13:55:26 +00:00
|
|
|
, gpuTargets ? [ ]
|
2022-11-04 12:27:35 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
# CUB can also be used as a backend instead of rocPRIM.
|
2022-11-27 09:42:12 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2022-11-04 12:27:35 +00:00
|
|
|
pname = "hipcub";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "5.7.0";
|
2022-11-04 12:27:35 +00:00
|
|
|
|
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
"test"
|
|
|
|
] ++ lib.optionals buildBenchmarks [
|
|
|
|
"benchmark"
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ROCmSoftwarePlatform";
|
|
|
|
repo = "hipCUB";
|
2022-12-02 08:20:57 +00:00
|
|
|
rev = "rocm-${finalAttrs.version}";
|
2023-10-19 13:55:26 +00:00
|
|
|
hash = "sha256-ygBEA3NuCQ13QrSzGqyWXkx8Dy9WhR3u4syzapRTkFU=";
|
2022-11-04 12:27:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
rocm-cmake
|
2023-10-19 13:55:26 +00:00
|
|
|
clr
|
2022-11-04 12:27:35 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
rocprim
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
gtest
|
|
|
|
] ++ lib.optionals buildBenchmarks [
|
|
|
|
gbenchmark
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_CXX_COMPILER=hipcc"
|
2023-10-19 13:55:26 +00:00
|
|
|
"-DHIP_ROOT_DIR=${clr}"
|
2022-11-04 12:27:35 +00:00
|
|
|
# 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"
|
2023-10-19 13:55:26 +00:00
|
|
|
] ++ lib.optionals (gpuTargets != [ ]) [
|
|
|
|
"-DAMDGPU_TARGETS=${lib.concatStringsSep ";" gpuTargets}"
|
2022-11-04 12:27:35 +00:00
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
"-DBUILD_TEST=ON"
|
|
|
|
] ++ lib.optionals buildBenchmarks [
|
|
|
|
"-DBUILD_BENCHMARK=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = lib.optionalString buildTests ''
|
|
|
|
mkdir -p $test/bin
|
|
|
|
mv $out/bin/test_* $test/bin
|
|
|
|
'' + lib.optionalString buildBenchmarks ''
|
|
|
|
mkdir -p $benchmark/bin
|
|
|
|
mv $out/bin/benchmark_* $benchmark/bin
|
|
|
|
'' + lib.optionalString (buildTests || buildBenchmarks) ''
|
|
|
|
rmdir $out/bin
|
|
|
|
'';
|
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
|
|
name = finalAttrs.pname;
|
|
|
|
owner = finalAttrs.src.owner;
|
|
|
|
repo = finalAttrs.src.repo;
|
|
|
|
};
|
2022-11-27 09:42:12 +00:00
|
|
|
|
2022-11-04 12:27:35 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Thin wrapper library on top of rocPRIM or CUB";
|
|
|
|
homepage = "https://github.com/ROCmSoftwarePlatform/hipCUB";
|
|
|
|
license = with licenses; [ bsd3 ];
|
2022-11-27 09:42:12 +00:00
|
|
|
maintainers = teams.rocm.members;
|
2023-01-20 10:41:00 +00:00
|
|
|
platforms = platforms.linux;
|
2023-10-19 13:55:26 +00:00
|
|
|
broken = versions.minor finalAttrs.version != versions.minor stdenv.cc.version;
|
2022-11-04 12:27:35 +00:00
|
|
|
};
|
2022-11-27 09:42:12 +00:00
|
|
|
})
|