correct KOKKOS FFT output for CMake summary one more time

This commit is contained in:
Axel Kohlmeyer
2020-01-23 00:27:00 -05:00
parent df23460e18
commit f14b200b6a

View File

@ -744,13 +744,15 @@ if(PKG_KSPACE)
else() else()
message(STATUS "Using non-threaded FFTs") message(STATUS "Using non-threaded FFTs")
endif() endif()
if(PKG_KOKKOS AND KOKKOS_ENABLE_CUDA) if(PKG_KOKKOS)
if (${FFT} STREQUAL "KISS") if(KOKKOS_ENABLE_CUDA)
message(STATUS "Kokkos FFT: KISS") if (${FFT} STREQUAL "KISS")
message(STATUS "Kokkos FFT: KISS")
else()
message(STATUS "Kokkos FFT: cuFFT")
endif()
else() else()
message(STATUS "Kokkos FFT: cuFFT") message(STATUS "Kokkos FFT: ${FFT}")
endif() endif()
else()
message(STATUS "Kokkos FFT: ${FFT}")
endif() endif()
endif() endif()