]> https://gitweb.dealii.org/ - dealii.git/commitdiff
fix Kokkos inside Trilinos detection
authorTimo Heister <timo.heister@gmail.com>
Fri, 21 Mar 2025 12:41:09 +0000 (08:41 -0400)
committerTimo Heister <timo.heister@gmail.com>
Fri, 21 Mar 2025 12:41:09 +0000 (08:41 -0400)
cmake/modules/FindDEAL_II_KOKKOS.cmake
cmake/modules/FindDEAL_II_TRILINOS.cmake

index cdcbfb4258360cde77eb37ba320bcece170faa6d..ad923fd20f0776d7eff4f4109a3a9003a0229315 100644 (file)
@@ -47,7 +47,12 @@ endif()
 
 
 if(Kokkos_FOUND)
+  if(NOT Kokkos_VERSION)
+    message(FATAL_ERROR "FindPackage(Kokkos) did not set Kokkos_VERSION!")
+  endif()
+
   if (Kokkos_ENABLE_CUDA OR Kokkos_ENABLE_HIP)
+    message(STATUS "Found Kokkos with device support.")
     # In version older than 3.7.0, Kokkos::Array::operator[] is not constexpr,
     # so we use std::array instead.
     if (Kokkos_VERSION VERSION_LESS 3.7.0)
index 7ff28686dd97a982c673a96ed19e2925fce6355c..faedde1e905a263b2078a61672b09c90ea295f11 100644 (file)
@@ -114,6 +114,15 @@ if(TRILINOS_VERSION VERSION_GREATER_EQUAL 14)
     list(APPEND _targets Kokkos::kokkos)
   endif()
 
+  # run find_package to populate variables like Kokkos_VERSION not
+  # set by the find_package call to Trilinos:
+  set(CMAKE_CXX_EXTENSIONS OFF)
+  find_package(Kokkos 3.7.0 QUIET
+    HINTS ${TRILINOS_DIR} NO_DEFAULT_PATH
+  )
+
+  set(KOKKOS_FOUND ${Kokkos_FOUND})
+
   process_feature(TRILINOS
     TARGETS REQUIRED _targets
     CLEAR

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.