From: Daniel Arndt Date: Mon, 2 Jan 2023 18:44:26 +0000 (+0100) Subject: Fix up Trilinos+Kokos detection X-Git-Tag: v9.5.0-rc1~687^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c16b18c4692c8216493fbd2b14344e96b3a89ef8;p=dealii.git Fix up Trilinos+Kokos detection --- diff --git a/cmake/configure/configure_20_trilinos.cmake b/cmake/configure/configure_20_trilinos.cmake index 4ad22d0096..c2305ed76f 100644 --- a/cmake/configure/configure_20_trilinos.cmake +++ b/cmake/configure/configure_20_trilinos.cmake @@ -183,6 +183,7 @@ macro(feature_trilinos_find_external var) "The Trilinos installation (found at \"${TRILINOS_DIR}\")" "includes Kokkos, but DEAL_II_FORCE_BUNDLED_KOKKOS=ON!\n") set(${var} FALSE) + unset(DEAL_II_TRILINOS_WITH_KOKKOS) endif() # @@ -200,23 +201,18 @@ macro(feature_trilinos_find_external var) "deal.II requires at least version 13.2 if the Trilinos installation includes Kokkos.\n\n" ) set(${var} FALSE) + unset(DEAL_II_TRILINOS_WITH_KOKKOS) endif() + endif() - - if(Kokkos_ENABLE_CUDA) + if(DEAL_II_TRILINOS_WITH_KOKKOS AND 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: # "[...] contains a vector, which is not supported in device code". We # would like to set the variable in check_01_cpu_feature but at that point # we don't know if CUDA support is enabled in Kokkos set(DEAL_II_VECTORIZATION_WIDTH_IN_BITS 0) - endif() - - # We need a recent version of Trilinos to use kokkos_check. We want to use - # VERSION_GREATER_EQUAL 13.0 but this requires CMake 3.7 - if(TRILINOS_VERSION VERSION_GREATER 12.99 AND Kokkos_ENABLE_CUDA) KOKKOS_CHECK(OPTIONS CUDA_LAMBDA) - endif() endif() if(DEAL_II_TRILINOS_WITH_TPETRA)