make support for threaded FFTW3 consistent and incorporate it into CMake

This now also includes threaded FFTW3 for regular FFTs, not only KOKKOS.
This commit is contained in:
Axel Kohlmeyer
2019-07-19 16:46:37 -04:00
parent 8b134cb0c9
commit 6a65deeb65
8 changed files with 78 additions and 17 deletions

View File

@ -679,4 +679,9 @@ if(PKG_KSPACE)
else()
message(STATUS "Using double precision FFTs")
endif()
if(FFT_THREADS)
message(STATUS "Using threaded FFTs")
else()
message(STATUS "Using non-threaded FFTs")
endif()
endif()