2021-09-03 11:56:56 +00:00
|
|
|
{ fetchurl
|
|
|
|
, stdenv
|
|
|
|
, lib
|
|
|
|
, gfortran
|
|
|
|
, perl
|
|
|
|
, llvmPackages ? null
|
|
|
|
, precision ? "double"
|
|
|
|
, enableAvx ? stdenv.hostPlatform.avxSupport
|
|
|
|
, enableAvx2 ? stdenv.hostPlatform.avx2Support
|
|
|
|
, enableAvx512 ? stdenv.hostPlatform.avx512Support
|
|
|
|
, enableFma ? stdenv.hostPlatform.fmaSupport
|
2021-09-07 16:21:30 +00:00
|
|
|
, enableMpi ? false
|
|
|
|
, mpi
|
2021-09-03 11:56:56 +00:00
|
|
|
}:
|
2014-07-15 21:01:11 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2020-02-11 10:53:54 +00:00
|
|
|
assert stdenv.cc.isClang -> llvmPackages != null;
|
2014-07-15 21:01:11 +00:00
|
|
|
assert elem precision [ "single" "double" "long-double" "quad-precision" ];
|
2014-01-01 10:51:56 +00:00
|
|
|
|
2017-08-20 08:40:51 +00:00
|
|
|
let
|
2021-01-21 23:31:51 +00:00
|
|
|
version = "3.3.9";
|
2017-08-20 08:40:51 +00:00
|
|
|
withDoc = stdenv.cc.isGNU;
|
|
|
|
in
|
2014-01-01 10:51:56 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2014-01-01 10:51:56 +00:00
|
|
|
name = "fftw-${precision}-${version}";
|
2014-07-15 21:01:11 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
src = fetchurl {
|
2018-06-09 23:18:16 +00:00
|
|
|
urls = [
|
|
|
|
"http://fftw.org/fftw-${version}.tar.gz"
|
|
|
|
"ftp://ftp.fftw.org/pub/fftw/fftw-${version}.tar.gz"
|
|
|
|
];
|
2021-01-21 23:31:51 +00:00
|
|
|
sha256 = "sha256-vyx85AsEroEa9xTetRJRDMLBe5q51t3PSf5Eh+6nrz0=";
|
2014-07-15 21:01:11 +00:00
|
|
|
};
|
|
|
|
|
2017-08-20 08:40:51 +00:00
|
|
|
outputs = [ "out" "dev" "man" ]
|
|
|
|
++ optional withDoc "info"; # it's dev-doc only
|
2015-10-06 15:00:31 +00:00
|
|
|
outputBin = "dev"; # fftw-wisdom
|
|
|
|
|
2021-07-08 14:49:10 +00:00
|
|
|
nativeBuildInputs = [ gfortran ];
|
|
|
|
|
2021-09-07 16:21:30 +00:00
|
|
|
buildInputs = optionals stdenv.cc.isClang [
|
2020-02-11 10:53:54 +00:00
|
|
|
# TODO: This may mismatch the LLVM version sin the stdenv, see #79818.
|
|
|
|
llvmPackages.openmp
|
2021-09-07 16:21:30 +00:00
|
|
|
] ++ optional enableMpi mpi;
|
2020-02-11 10:53:54 +00:00
|
|
|
|
2014-07-15 21:01:11 +00:00
|
|
|
configureFlags =
|
2019-08-31 12:10:53 +00:00
|
|
|
[ "--enable-shared"
|
2015-03-27 05:03:11 +00:00
|
|
|
"--enable-threads"
|
2014-07-15 21:01:11 +00:00
|
|
|
]
|
|
|
|
++ optional (precision != "double") "--enable-${precision}"
|
|
|
|
# all x86_64 have sse2
|
2015-11-30 16:18:57 +00:00
|
|
|
# however, not all float sizes fit
|
|
|
|
++ optional (stdenv.isx86_64 && (precision == "single" || precision == "double") ) "--enable-sse2"
|
2021-09-03 11:56:56 +00:00
|
|
|
++ optional enableAvx "--enable-avx"
|
|
|
|
++ optional enableAvx2 "--enable-avx2"
|
|
|
|
++ optional enableAvx512 "--enable-avx512"
|
|
|
|
++ optional enableFma "--enable-fma"
|
2020-02-11 10:53:54 +00:00
|
|
|
++ [ "--enable-openmp" ]
|
2021-09-07 16:21:30 +00:00
|
|
|
++ optional enableMpi "--enable-mpi"
|
2016-08-21 04:59:31 +00:00
|
|
|
# doc generation causes Fortran wrapper generation which hard-codes gcc
|
2017-08-20 08:40:51 +00:00
|
|
|
++ optional (!withDoc) "--disable-doc";
|
2014-07-15 21:01:11 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-08-08 18:30:43 +00:00
|
|
|
checkInputs = [ perl ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2010-06-24 16:43:42 +00:00
|
|
|
description = "Fastest Fourier Transform in the West library";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.fftw.org/";
|
2015-03-27 05:03:11 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.spwhitt ];
|
|
|
|
platforms = platforms.unix;
|
2010-06-24 16:43:42 +00:00
|
|
|
};
|
2007-10-29 10:52:04 +00:00
|
|
|
}
|