]> https://gitweb.dealii.org/ - dealii.git/commitdiff
CMake: ensure some rudimentary Kokkos compatibility
authorMatthias Maier <tamiko@43-1.org>
Tue, 25 Mar 2025 05:04:51 +0000 (00:04 -0500)
committerMatthias Maier <tamiko@43-1.org>
Tue, 25 Mar 2025 20:54:55 +0000 (15:54 -0500)
cmake/configure/configure_30_kokkos.cmake

index f524d6e2c86067ef4dbc873eb2a452c3da05f0c3..43f9a0b6fe05c55892ab507b7fbf113e4cd59b39 100644 (file)
@@ -23,10 +23,10 @@ set(DEAL_II_WITH_KOKKOS ON # Always true. We need it :-]
 
 configure_feature(KOKKOS)
 
-
 #
 # DEAL_II_WITH_KOKKOS is always required.
 #
+
 if(NOT DEAL_II_WITH_KOKKOS)
   if(DEAL_II_FEATURE_AUTODETECTION)
     feature_error_message("KOKKOS")
@@ -37,3 +37,26 @@ if(NOT DEAL_II_WITH_KOKKOS)
       )
   endif()
 endif()
+
+#
+# Sanity check: Make sure we do not accidentally end up using bundled
+# Kokkos with Trilinos and PETSc built against an external Kokkos library.
+# We should have never gotten into this situation. So all we can do now is
+# to issue a FATAL_ERROR.
+#
+
+if(DEAL_II_FEATURE_KOKKOS_BUNDLED_CONFIGURED AND DEAL_II_WITH_TRILINOS AND TRILINOS_WITH_KOKKOS)
+  message(FATAL_ERROR "\n"
+    "Internal build system error: We have selected Trilinos shipping with (or "
+    "built against) an external Kokkos library, but ended up selecting our "
+    "bundled Kokkos library.\n\n"
+    )
+endif()
+
+if(DEAL_II_FEATURE_KOKKOS_BUNDLED_CONFIGURED AND DEAL_II_WITH_PETSC AND PETSC_WITH_KOKKOS)
+  message(FATAL_ERROR "\n"
+    "Internal build system error: We have selected PETSc built against an "
+    "external Kokkos library, but ended up selecting our bundled Kokkos "
+    "library.\n\n"
+    )
+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.