use FFT_FFTW_THREADS consistently, add CUFFT to CMake, minor improvements

This commit is contained in:
Axel Kohlmeyer
2020-01-12 21:32:07 -05:00
parent 7cb36d1705
commit 3784df23f0
4 changed files with 36 additions and 21 deletions

View File

@ -738,9 +738,12 @@ if(PKG_KSPACE)
else()
message(STATUS "Using double precision FFTs")
endif()
if(FFT_THREADS)
if(FFT_FFTW_THREADS)
message(STATUS "Using threaded FFTs")
else()
message(STATUS "Using non-threaded FFTs")
endif()
if(PKG_KOKKOS AND FFT_CUFFT)
message(STATUS "Kokkos FFT: cuFFT")
endif()
endif()