From 9ec3a8ad1a0ba30271fe24792efc2471af640ee5 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 25 Mar 2025 00:04:51 -0500 Subject: [PATCH] CMake: ensure some rudimentary Kokkos compatibility --- cmake/configure/configure_30_kokkos.cmake | 25 ++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/cmake/configure/configure_30_kokkos.cmake b/cmake/configure/configure_30_kokkos.cmake index f524d6e2c8..43f9a0b6fe 100644 --- a/cmake/configure/configure_30_kokkos.cmake +++ b/cmake/configure/configure_30_kokkos.cmake @@ -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() -- 2.39.5