]> https://gitweb.dealii.org/ - dealii.git/commitdiff
CMake: Refactor Kokkos setup into FindDEAL_II_KOKKOS.cmake
authorMatthias Maier <tamiko@43-1.org>
Mon, 24 Mar 2025 22:51:59 +0000 (17:51 -0500)
committerMatthias Maier <tamiko@43-1.org>
Tue, 25 Mar 2025 15:06:32 +0000 (10:06 -0500)
cmake/configure/configure_20_trilinos.cmake
cmake/modules/FindDEAL_II_PETSC.cmake

index ed568f3e289655e1540d95e8ba5a0434f3359792..70aa34186dfb22a2f26a7ee2bb4a533b46078499 100644 (file)
@@ -194,6 +194,15 @@ macro(feature_trilinos_find_external var)
           "includes Kokkos, but DEAL_II_FORCE_BUNDLED_KOKKOS=ON!\n")
         set(${var} FALSE)
       endif()
+
+      #
+      # When configuring Kokkos we have to ensure that we actually pick up the
+      # correct Kokkos installation coming from Trilinos.
+      #
+      # FIXME: this logic should probably be refactored into
+      # FindDEAL_II_TRILINOS.cmake...
+      #
+      set(TRILINOS_KOKKOS_DIR "${TRILINOS_CONFIG_DIR}/..")
     endif()
 
     if(TRILINOS_WITH_KOKKOS AND Kokkos_ENABLE_CUDA)
index 6e56267ddf6142547240866d79cf129899a6c72e..874b332286f104762d8bb8152847c016b826dce2 100644 (file)
 # This module exports:
 #
 #     PETSC_FOUND
-#     PETSC_LIBRARIES
 #     PETSC_INCLUDE_DIRS
+#     PETSC_KOKKOS_DIR
+#     PETSC_LIBRARIES
 #     PETSC_VERSION
 #     PETSC_VERSION_MAJOR
 #     PETSC_VERSION_MINOR
-#     PETSC_VERSION_SUBMINOR
 #     PETSC_VERSION_PATCH
+#     PETSC_VERSION_SUBMINOR
 #     PETSC_WITH_64BIT_INDICES
 #     PETSC_WITH_COMPLEX
 #     PETSC_WITH_HYPRE
@@ -194,18 +195,15 @@ if(NOT PETSC_PETSCVARIABLES MATCHES "-NOTFOUND")
     endif()
   endforeach()
 
-  # PETSc does not expose Kokkos version, so we need to search for Kokkos
-  # ourselves.
+  #
+  # When configuring Kokkos we have to ensure that we actually pick up the
+  # correct Kokkos installation coming from PETSc.
+  #
   if(PETSC_WITH_KOKKOS)
     file(STRINGS "${PETSC_PETSCVARIABLES}" KOKKOS_INCLUDE
       REGEX "^KOKKOS_INCLUDE =.*")
     string(REGEX REPLACE "^KOKKOS_INCLUDE = -I" "" KOKKOS_INCLUDE "${KOKKOS_INCLUDE}")
-    find_package(Kokkos 3.7.0 QUIET
-      PATHS ${KOKKOS_INCLUDE}/.. NO_DEFAULT_PATH
-      )
-    if(NOT Kokkos_FOUND)
-      set(PETSC_FOUND FALSE)
-    endif()
+    set(PETSC_KOKKOS_DIR "${KOKKOS_INCLUDE}/..")
   endif()
 endif()
 

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.