3
0
Fork 0
forked from mirrors/nixpkgs

fftwMpi: add attribute for MPI-enabled fftw

This commit is contained in:
Phillip Seeber 2022-09-06 17:48:31 +02:00
parent 0174086412
commit f9ad9aab79

View file

@ -18036,6 +18036,7 @@ with pkgs;
fftwSinglePrec = fftw.override { precision = "single"; };
fftwFloat = fftwSinglePrec; # the configure option is just an alias
fftwLongDouble = fftw.override { precision = "long-double"; };
fftwMpi = fftw.override { enableMpi = true; };
filter-audio = callPackage ../development/libraries/filter-audio {};