From b745d98e04b31dc59c02f2647c1307e492146f8c Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Mon, 24 Mar 2025 18:03:34 -0500 Subject: [PATCH] CMake: remove a superfluous check This is already handled in FindDEAL_II_KOKKOS.cmake. No need to duplicate the logic. --- cmake/configure/configure_20_trilinos.cmake | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/cmake/configure/configure_20_trilinos.cmake b/cmake/configure/configure_20_trilinos.cmake index 70aa34186d..2988a13444 100644 --- a/cmake/configure/configure_20_trilinos.cmake +++ b/cmake/configure/configure_20_trilinos.cmake @@ -205,16 +205,6 @@ macro(feature_trilinos_find_external var) set(TRILINOS_KOKKOS_DIR "${TRILINOS_CONFIG_DIR}/..") endif() - if(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) - KOKKOS_CHECK(OPTIONS CUDA_LAMBDA) - endif() - if(TRILINOS_WITH_TPETRA) # # Check if Tpetra is usable in fact. -- 2.39.5