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
|
|
|
|
, rocm-runtime
|
|
|
|
, rocm-device-libs
|
|
|
|
, rocm-comgr
|
|
|
|
, rocprim
|
|
|
|
, hip
|
2022-12-02 08:20:57 +00:00
|
|
|
, gtest
|
2022-11-04 12:27:35 +00:00
|
|
|
, buildTests ? false
|
|
|
|
, buildBenchmarks ? false
|
|
|
|
}:
|
|
|
|
|
2022-11-27 09:42:12 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2022-11-04 12:27:35 +00:00
|
|
|
pname = "rocthrust";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "5.4.0";
|
2022-11-04 12:27:35 +00:00
|
|
|
|
|
|
|
# Comment out these outputs until tests/benchmarks are fixed (upstream?)
|
|
|
|
# outputs = [
|
|
|
|
# "out"
|
|
|
|
# ] ++ lib.optionals buildTests [
|
|
|
|
# "test"
|
|
|
|
# ] ++ lib.optionals buildBenchmarks [
|
|
|
|
# "benchmark"
|
|
|
|
# ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ROCmSoftwarePlatform";
|
|
|
|
repo = "rocThrust";
|
2022-12-02 08:20:57 +00:00
|
|
|
rev = "rocm-${finalAttrs.version}";
|
2022-12-17 10:02:37 +00:00
|
|
|
hash = "sha256-3OcJUL6T1HJz6TQb1//lumsTxqfwbWbQ4lGuZoKmqbY=";
|
2022-11-04 12:27:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
rocm-cmake
|
|
|
|
rocprim
|
|
|
|
hip
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
rocm-runtime
|
|
|
|
rocm-device-libs
|
|
|
|
rocm-comgr
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
gtest
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_CXX_COMPILER=hipcc"
|
|
|
|
"-DHIP_ROOT_DIR=${hip}"
|
|
|
|
# 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_TEST=ON"
|
|
|
|
] ++ lib.optionals buildBenchmarks [
|
|
|
|
"-DBUILD_BENCHMARKS=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Comment out these outputs until tests/benchmarks are fixed (upstream?)
|
|
|
|
# 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 = "ROCm parallel algorithm library";
|
|
|
|
homepage = "https://github.com/ROCmSoftwarePlatform/rocThrust";
|
|
|
|
license = with licenses; [ asl20 ];
|
2022-11-27 09:42:12 +00:00
|
|
|
maintainers = teams.rocm.members;
|
2022-12-02 08:20:57 +00:00
|
|
|
# Tests/Benchmarks don't seem to work, thousands of errors compiling with no clear fix
|
|
|
|
# Is this an upstream issue? We don't seem to be missing dependencies
|
|
|
|
broken = finalAttrs.version != hip.version || buildTests || buildBenchmarks;
|
2022-11-04 12:27:35 +00:00
|
|
|
};
|
2022-11-27 09:42:12 +00:00
|
|
|
})
|