2022-11-04 12:27:35 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2022-12-17 10:02:37 +00:00
|
|
|
, rocmUpdateScript
|
2023-01-20 10:41:00 +00:00
|
|
|
, runCommand
|
2022-11-04 12:27:35 +00:00
|
|
|
, cmake
|
|
|
|
, rocm-cmake
|
2023-01-20 10:41:00 +00:00
|
|
|
, rocrand
|
2022-11-04 12:27:35 +00:00
|
|
|
, hip
|
2023-01-20 10:41:00 +00:00
|
|
|
, openmp
|
2022-11-04 12:27:35 +00:00
|
|
|
, sqlite
|
|
|
|
, python3
|
2022-12-02 08:20:57 +00:00
|
|
|
, gtest
|
|
|
|
, boost
|
|
|
|
, fftw
|
|
|
|
, fftwFloat
|
2022-11-04 12:27:35 +00:00
|
|
|
, buildTests ? false
|
|
|
|
, buildBenchmarks ? false
|
|
|
|
}:
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
let
|
|
|
|
rocfft = stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "rocfft";
|
|
|
|
version = "5.4.2";
|
|
|
|
|
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
"test"
|
|
|
|
] ++ lib.optionals buildBenchmarks [
|
|
|
|
"benchmark"
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ROCmSoftwarePlatform";
|
|
|
|
repo = "rocFFT";
|
|
|
|
rev = "rocm-${finalAttrs.version}";
|
|
|
|
hash = "sha256-NsYeEoBQ/0z31ZQ32l7N+qavWEVkH37snkTHntot7nE=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
rocm-cmake
|
|
|
|
hip
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
sqlite
|
|
|
|
python3
|
|
|
|
] ++ lib.optionals buildTests [
|
|
|
|
gtest
|
|
|
|
] ++ lib.optionals (buildTests || buildBenchmarks) [
|
|
|
|
rocrand
|
|
|
|
boost
|
|
|
|
fftw
|
|
|
|
fftwFloat
|
|
|
|
openmp
|
|
|
|
];
|
|
|
|
|
|
|
|
propogatedBuildInputs = lib.optionals buildTests [
|
|
|
|
fftw
|
|
|
|
fftwFloat
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_C_COMPILER=hipcc"
|
|
|
|
"-DCMAKE_CXX_COMPILER=hipcc"
|
|
|
|
"-DUSE_HIP_CLANG=ON"
|
|
|
|
"-DSQLITE_USE_SYSTEM_PACKAGE=ON"
|
|
|
|
# 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_CLIENTS_TESTS=ON"
|
|
|
|
] ++ lib.optionals buildBenchmarks [
|
|
|
|
"-DBUILD_CLIENTS_RIDER=ON"
|
|
|
|
"-DBUILD_CLIENTS_SAMPLES=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = lib.optionalString buildTests ''
|
|
|
|
mkdir -p $test/{bin,lib/fftw}
|
|
|
|
cp -a $out/bin/* $test/bin
|
|
|
|
ln -s ${fftw}/lib/libfftw*.so $test/lib/fftw
|
|
|
|
ln -s ${fftwFloat}/lib/libfftw*.so $test/lib/fftw
|
|
|
|
rm -r $out/lib/fftw
|
|
|
|
rm $test/bin/{rocfft_rtc_helper,*-rider} || true
|
|
|
|
'' + lib.optionalString buildBenchmarks ''
|
|
|
|
mkdir -p $benchmark/bin
|
|
|
|
cp -a $out/bin/* $benchmark/bin
|
|
|
|
rm $benchmark/bin/{rocfft_rtc_helper,*-test} || true
|
|
|
|
'' + lib.optionalString (buildTests || buildBenchmarks ) ''
|
|
|
|
mv $out/bin/rocfft_rtc_helper $out
|
|
|
|
rm -r $out/bin/*
|
|
|
|
mv $out/rocfft_rtc_helper $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
|
|
name = finalAttrs.pname;
|
|
|
|
owner = finalAttrs.src.owner;
|
|
|
|
repo = finalAttrs.src.repo;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "FFT implementation for ROCm ";
|
|
|
|
homepage = "https://github.com/ROCmSoftwarePlatform/rocFFT";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = teams.rocm.members;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
broken = versions.minor finalAttrs.version != versions.minor hip.version;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
rocfft-zero = runCommand "rocfft-zero" { preferLocalBuild = true; } ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -a ${rocfft}/lib/librocfft-device-0* $out
|
2022-11-04 12:27:35 +00:00
|
|
|
'';
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
rocfft-one = runCommand "rocfft-one" { preferLocalBuild = true; } ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -a ${rocfft}/lib/librocfft-device-1* $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
rocfft-two = runCommand "rocfft-two" { preferLocalBuild = true; } ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -a ${rocfft}/lib/librocfft-device-2* $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
rocfft-three = runCommand "rocfft-three" { preferLocalBuild = true; } ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -a ${rocfft}/lib/librocfft-device-3* $out
|
|
|
|
'';
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit (rocfft) pname version outputs src passthru meta;
|
|
|
|
|
|
|
|
dontUnpack = true;
|
2023-02-02 18:25:31 +00:00
|
|
|
dontPatch = true;
|
2023-01-20 10:41:00 +00:00
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out/lib
|
|
|
|
|
|
|
|
for path in ${rocfft-zero} ${rocfft-one} ${rocfft-two} ${rocfft-three}; do
|
|
|
|
cp -as $path/* $out/lib
|
|
|
|
done
|
|
|
|
|
|
|
|
cp -an ${rocfft}/* $out
|
|
|
|
'' + lib.optionalString buildTests ''
|
|
|
|
cp -a ${rocfft.test} $test
|
|
|
|
'' + lib.optionalString buildBenchmarks ''
|
|
|
|
cp -a ${rocfft.benchmark} $benchmark
|
|
|
|
'' + ''
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
# Fix paths
|
|
|
|
preFixup = ''
|
|
|
|
substituteInPlace $out/include/*.h $out/rocfft/include/*.h \
|
|
|
|
--replace "${rocfft}" "$out"
|
|
|
|
|
|
|
|
patchelf --set-rpath \
|
|
|
|
$(patchelf --print-rpath $out/lib/librocfft.so | sed 's,${rocfft}/lib,'"$out/lib"',') \
|
|
|
|
$out/lib/librocfft.so
|
|
|
|
'' + lib.optionalString buildTests ''
|
|
|
|
patchelf --set-rpath \
|
|
|
|
$(patchelf --print-rpath $test/bin/rocfft-test | sed 's,${rocfft}/lib,'"$out/lib"',') \
|
|
|
|
$test/bin/rocfft-test
|
|
|
|
'' + lib.optionalString buildBenchmarks ''
|
|
|
|
patchelf --set-rpath \
|
|
|
|
$(patchelf --print-rpath $benchmark/bin/rocfft-rider | sed 's,${rocfft}/lib,'"$out/lib"',') \
|
|
|
|
$benchmark/bin/rocfft-rider
|
|
|
|
'';
|
2023-01-20 10:41:00 +00:00
|
|
|
}
|