Skip to content

Commit

Permalink
Fix missing SYCL configuration for install
Browse files Browse the repository at this point in the history
  • Loading branch information
pzehner committed Jan 30, 2024
1 parent 8ced968 commit 53020db
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cmake/KokkosFFTConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ elseif(@Kokkos_ENABLE_HIP@)
if(@KokkosFFT_ENABLE_HOST_AND_DEVICE@)
find_dependency(FFTW MODULE)
endif()
elseif(@Kokkos_ENABLE_SYCL@)
find_dependency(MKL COMPONENTS SYCL)
if(@KokkosFFT_ENABLE_HOST_AND_DEVICE@)
find_dependency(FFTW MODULE)
endif()
elseif(@Kokkos_ENABLE_OPENMP@)
find_dependency(FFTW MODULE)
elseif(@Kokkos_ENABLE_SERIAL@)
Expand All @@ -26,4 +31,4 @@ endif()

include(${KokkosFFT_TARGET_FILE})

check_required_components(KokkosFFT)
check_required_components(KokkosFFT)

0 comments on commit 53020db

Please sign in to comment.