]> https://gitweb.dealii.org/ - dealii.git/commitdiff
CMake: ensure that we always call find_package(Kokkos [...])
authorMatthias Maier <tamiko@43-1.org>
Tue, 25 Mar 2025 00:30:32 +0000 (19:30 -0500)
committerMatthias Maier <tamiko@43-1.org>
Tue, 25 Mar 2025 20:54:55 +0000 (15:54 -0500)
cmake/modules/FindDEAL_II_KOKKOS.cmake

index 1820e881592d172a0ec5bc678dcd43a412323c7f..70ca71991a8d4e12570b9a79b6c60c3227c66f0e 100644 (file)
 #
 #   KOKKOS_INCLUDE_DIRS
 #   KOKKOS_INTERFACE_LINK_FLAGS
+#   KOKKOS_VERSION
 #
 
 set(KOKKOS_DIR "" CACHE PATH "An optional hint to a Kokkos installation")
 set_if_empty(KOKKOS_DIR "$ENV{KOKKOS_DIR}")
 
+# silence a warning when including FindKOKKOS.cmake
+set(CMAKE_CXX_EXTENSIONS OFF)
 
-if(DEAL_II_TRILINOS_WITH_KOKKOS OR DEAL_II_PETSC_WITH_KOKKOS)
-  # Let ArborX know that we have found Kokkos
-  set(Kokkos_FOUND ON)
-  # Let deal.II know that we have found Kokkos
-  set(KOKKOS_FOUND ON)
-else()
-  # silence a warning when including FindKOKKOS.cmake
-  set(CMAKE_CXX_EXTENSIONS OFF)
-  find_package(Kokkos 3.7.0 QUIET
-    HINTS ${KOKKOS_DIR} ${Kokkos_DIR} $ENV{Kokkos_DIR}
+# The minimal Kokkos version we support
+set(KOKKOS_MINIMUM_REQUIRED_VERSION 3.7.0)
+
+#
+# Make sure that we prioritize Kokkos bundled with Trilinos or PETSc.
+#
+# We do this by searching for the Kokkos installation first at the
+# restrictive path locations we deduced from both configurations.
+#
+
+if(Kokkos_FOUND)
+  message(WARNING "\n"
+    "find_package(Kokkos [...]) already called. The deal.II CMake "
+    "configuration might be inconsistent.\n\n"
     )
+endif()
 
-  set(KOKKOS_FOUND ${Kokkos_FOUND})
+if(DEAL_II_WITH_TRILINOS AND TRILINOS_WITH_KOKKOS)
+  message(STATUS "Found Trilinos with bundled Kokkos library. Overriding search path.")
+  set(KOKKOS_MINIMUM_REQUIRED_VERSION 3.4.0)
+  find_package(Kokkos ${KOKKOS_MINIMUM_REQUIRED_VERSION} QUIET
+    PATHS ${TRILINOS_KOKKOS_DIR} NO_DEFAULT_PATH
+    )
 
-  set(_target Kokkos::kokkos)
-  process_feature(KOKKOS
-    TARGETS REQUIRED _target
+  if(NOT Kokkos_FOUND)
+    message(WARNING "\n"
+      "The find_package(Kokkos [...]) call failed with the path deduced from "
+      "the Trilinos configuration. The deal.II CMake configuration might be "
+      "inconsistent.\n\n"
+      )
+  endif()
+
+elseif(DEAL_II_WITH_PETSC AND PETSC_WITH_KOKKOS)
+  message(STATUS "Found PETSc with bundled Kokkos library. Overriding search path.")
+  set(KOKKOS_MINIMUM_REQUIRED_VERSION 3.4.0)
+  find_package(Kokkos ${KOKKOS_MINIMUM_REQUIRED_VERSION} QUIET
+    PATHS ${PETSC_KOKKOS_DIR} NO_DEFAULT_PATH
     )
+
+  if(NOT Kokkos_FOUND)
+    message(WARNING "\n"
+      "The find_package(Kokkos [...]) call failed with the path deduced from "
+      "the PETSc configuration. The deal.II CMake configuration might be "
+      "inconsistent.\n\n"
+      )
+  endif()
 endif()
 
+#
+# Find the Kokkos CMake configuration:
+#
+
+find_package(Kokkos ${KOKKOS_MINIMUM_REQUIRED_VERSION} QUIET HINTS ${KOKKOS_DIR})
 
+set(_target)
 if(Kokkos_FOUND)
+  set(_target Kokkos::kokkos)
+endif()
+
+process_feature(KOKKOS
+  TARGETS REQUIRED _target
+  CLEAR Kokkos_DIR
+  )
+
+if(KOKKOS_FOUND)
+  #
+  # Set version number:
+  #
   if(NOT Kokkos_VERSION)
-    message(FATAL_ERROR "FindPackage(Kokkos) did not set Kokkos_VERSION!")
+    message(WARNING "\n"
+      "find_package(Kokkos [...]) did not set Kokkos_VERSION!"
+      )
+    set(Kokkos_VERSION ${KOKKOS_MINIMUM_REQUIRED_VERSION})
   endif()
+  set(KOKKOS_VERSION ${Kokkos_VERSION})
 
   if (Kokkos_ENABLE_CUDA OR Kokkos_ENABLE_HIP)
     # In version older than 3.7.0, Kokkos::Array::operator[] is not constexpr,
@@ -60,6 +113,7 @@ if(Kokkos_FOUND)
       list(REMOVE_ITEM DEAL_II_DEFINITIONS_DEBUG "_GLIBCXX_ASSERTIONS")
     endif()
   endif()
+
   if(Kokkos_ENABLE_CUDA)
     # We need to disable SIMD vectorization for CUDA device code.
     # Otherwise, nvcc compilers from version 9 on will emit an error message like:

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.