From f0e810aaf8ebd40343ec13a2f87f18414db80fb7 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 31 Mar 2025 10:52:14 -0600 Subject: [PATCH] Make use of DEAL_II_KOKKOS_VERSION_GTE. --- include/deal.II/base/exception_macros.h | 4 +-- include/deal.II/base/exceptions.h | 2 +- include/deal.II/base/memory_space_data.h | 12 ++++---- include/deal.II/base/tensor.h | 6 ++-- include/deal.II/base/utilities.h | 2 +- .../lac/la_parallel_vector.templates.h | 30 +++++++++---------- .../deal.II/lac/vector_operations_internal.h | 12 ++++---- .../portable_matrix_free.templates.h | 2 +- .../portable_tensor_product_kernels.h | 4 +-- source/base/init_finalize.cc | 2 +- source/base/kokkos.cc | 4 +-- 11 files changed, 40 insertions(+), 40 deletions(-) diff --git a/include/deal.II/base/exception_macros.h b/include/deal.II/base/exception_macros.h index befdf5f9b4..151b899f37 100644 --- a/include/deal.II/base/exception_macros.h +++ b/include/deal.II/base/exception_macros.h @@ -505,7 +505,7 @@ * @ingroup Exceptions */ #ifdef DEBUG -# if KOKKOS_VERSION >= 30600 +# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) # ifdef DEAL_II_HAVE_BUILTIN_EXPECT # define Assert(cond, exc) \ do \ @@ -551,7 +551,7 @@ } \ while (false) # endif /*ifdef DEAL_II_HAVE_BUILTIN_EXPECT*/ -# else /*if KOKKOS_VERSION >= 30600*/ +# else /*if DEAL_II_KOKKOS_VERSION_GTE(3,6,0)*/ # ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_HOST # ifdef DEAL_II_HAVE_BUILTIN_EXPECT # define Assert(cond, exc) \ diff --git a/include/deal.II/base/exceptions.h b/include/deal.II/base/exceptions.h index 373ae8849c..7f85c4f900 100644 --- a/include/deal.II/base/exceptions.h +++ b/include/deal.II/base/exceptions.h @@ -26,7 +26,7 @@ // all having to include Kokkos headers, we have to do it here: DEAL_II_DISABLE_EXTRA_DIAGNOSTICS #include -#if KOKKOS_VERSION >= 40200 +#if DEAL_II_KOKKOS_VERSION_GTE(4, 2, 0) # include #else # include diff --git a/include/deal.II/base/memory_space_data.h b/include/deal.II/base/memory_space_data.h index 2dfe066907..3c126e9ff4 100644 --- a/include/deal.II/base/memory_space_data.h +++ b/include/deal.II/base/memory_space_data.h @@ -62,10 +62,10 @@ namespace MemorySpace * Kokkos View owning a host buffer used for MPI communication. */ // FIXME Should we move this somewhere else? -#if KOKKOS_VERSION < 40000 - Kokkos::View values_host_buffer; -#else +#if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0) Kokkos::View values_host_buffer; +#else + Kokkos::View values_host_buffer; #endif /** @@ -108,11 +108,11 @@ namespace MemorySpace MemorySpaceData::MemorySpaceData() : values_host_buffer( (dealii::internal::ensure_kokkos_initialized(), -# if KOKKOS_VERSION < 40000 - Kokkos::View("host buffer", 0))) -# else +# if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0) Kokkos::View("host pinned buffer", 0))) +# else + Kokkos::View("host buffer", 0))) # endif , values(Kokkos::View( "memoryspace data", diff --git a/include/deal.II/base/tensor.h b/include/deal.II/base/tensor.h index 6a4ffc0875..000e115e0d 100644 --- a/include/deal.II/base/tensor.h +++ b/include/deal.II/base/tensor.h @@ -839,7 +839,7 @@ private: * a rank-1 tensor, then we simply need an array of scalars. * Otherwise, it is an array of tensors one rank lower. */ -#if KOKKOS_VERSION >= 30700 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0) std::conditional_t, Kokkos::Array, dim>> @@ -1104,7 +1104,7 @@ namespace internal constexpr DEAL_II_HOST_DEVICE_ALWAYS_INLINE void multiply_assign_scalar(std::complex &val, const OtherNumber &s) { -# if KOKKOS_VERSION >= 30600 +# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) KOKKOS_IF_ON_HOST((val *= s;)) KOKKOS_IF_ON_DEVICE(({ (void)val; @@ -1329,7 +1329,7 @@ namespace internal namespace TensorInitialization { template -# if KOKKOS_VERSION >= 30700 +# if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0) constexpr Kokkos::Array::value_type, dim> # else constexpr std::array::value_type, dim> diff --git a/include/deal.II/base/utilities.h b/include/deal.II/base/utilities.h index b81ff96651..c139a8c66b 100644 --- a/include/deal.II/base/utilities.h +++ b/include/deal.II/base/utilities.h @@ -969,7 +969,7 @@ namespace Utilities #if defined(DEBUG) && !defined(DEAL_II_CXX14_CONSTEXPR_BUG) // Up to __builtin_expect this is the same code as in the 'Assert' macro. // The call to __builtin_expect turns out to be problematic. -# if KOKKOS_VERSION >= 30600 +# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) KOKKOS_IF_ON_HOST(({ if (!(iexp >= 0)) ::dealii::deal_II_exceptions::internals::issue_error_noreturn( diff --git a/include/deal.II/lac/la_parallel_vector.templates.h b/include/deal.II/lac/la_parallel_vector.templates.h index ef8fcdab85..5b7f6ff051 100644 --- a/include/deal.II/lac/la_parallel_vector.templates.h +++ b/include/deal.II/lac/la_parallel_vector.templates.h @@ -134,7 +134,7 @@ namespace LinearAlgebra { if (comm_shared == MPI_COMM_SELF) { -#if KOKKOS_VERSION >= 30600 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) Kokkos::resize(Kokkos::WithoutInitializing, data.values, new_alloc_size); @@ -349,7 +349,7 @@ namespace LinearAlgebra data.values.size() == 0), ExcInternalError()); -#if KOKKOS_VERSION >= 30600 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) Kokkos::resize(Kokkos::WithoutInitializing, data.values, new_alloc_size); @@ -492,11 +492,11 @@ namespace LinearAlgebra ::dealii::MemorySpace::Default::kokkos_space::execution_space>( exec, 0, size), KOKKOS_LAMBDA(size_type i, RealType & update) { -#if KOKKOS_VERSION < 30700 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0) + update = Kokkos::fmax(update, Kokkos::abs(data.values(i))); +#else update = Kokkos::Experimental::fmax( update, Kokkos::Experimental::fabs(data.values(i))); -#else - update = Kokkos::fmax(update, Kokkos::abs(data.values(i))); #endif }, Kokkos::Max(result)); @@ -992,7 +992,7 @@ namespace LinearAlgebra if (std::is_same_v) { if (import_data.values_host_buffer.size() == 0) -# if KOKKOS_VERSION >= 30600 +# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) Kokkos::resize(Kokkos::WithoutInitializing, import_data.values_host_buffer, partitioner->n_import_indices()); @@ -1005,7 +1005,7 @@ namespace LinearAlgebra # endif { if (import_data.values.size() == 0) -# if KOKKOS_VERSION >= 30600 +# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) Kokkos::resize(Kokkos::WithoutInitializing, import_data.values, partitioner->n_import_indices()); @@ -1024,11 +1024,11 @@ namespace LinearAlgebra // uses a view of the array and thus we need the data on the host to // outlive the scope of the function. data.values_host_buffer = -# if KOKKOS_VERSION < 40000 - Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace{}, +# if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0) + Kokkos::create_mirror_view_and_copy(Kokkos::SharedHostPinnedSpace{}, data.values); # else - Kokkos::create_mirror_view_and_copy(Kokkos::SharedHostPinnedSpace{}, + Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace{}, data.values); # endif partitioner->import_from_ghosted_array_start( @@ -1152,7 +1152,7 @@ namespace LinearAlgebra if (std::is_same_v) { if (import_data.values_host_buffer.size() == 0) -# if KOKKOS_VERSION >= 30600 +# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) Kokkos::resize(Kokkos::WithoutInitializing, import_data.values_host_buffer, partitioner->n_import_indices()); @@ -1165,7 +1165,7 @@ namespace LinearAlgebra # endif { if (import_data.values.size() == 0) -# if KOKKOS_VERSION >= 30600 +# if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) Kokkos::resize(Kokkos::WithoutInitializing, import_data.values, partitioner->n_import_indices()); @@ -1184,11 +1184,11 @@ namespace LinearAlgebra // uses a view of the array and thus we need the data on the host to // outlive the scope of the function. data.values_host_buffer = -# if KOKKOS_VERSION < 40000 - Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace{}, +# if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0) + Kokkos::create_mirror_view_and_copy(Kokkos::SharedHostPinnedSpace{}, data.values); # else - Kokkos::create_mirror_view_and_copy(Kokkos::SharedHostPinnedSpace{}, + Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace{}, data.values); # endif diff --git a/include/deal.II/lac/vector_operations_internal.h b/include/deal.II/lac/vector_operations_internal.h index 7760ac83e9..40817aa6ff 100644 --- a/include/deal.II/lac/vector_operations_internal.h +++ b/include/deal.II/lac/vector_operations_internal.h @@ -2524,10 +2524,10 @@ namespace internal ::dealii::MemorySpace::Default::kokkos_space::execution_space>( exec, optional_offset, optional_offset + size), KOKKOS_LAMBDA(size_type i, Number & update) { -#if KOKKOS_VERSION < 30700 - update += Kokkos::Experimental::fabs(data.values(i)); -#else +#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0) update += Kokkos::abs(data.values(i)); +#else + update += Kokkos::Experimental::fabs(data.values(i)); #endif }, sum); @@ -2552,11 +2552,11 @@ namespace internal ::dealii::MemorySpace::Default::kokkos_space::execution_space>( exec, 0, size), KOKKOS_LAMBDA(size_type i, Number & update) { -#if KOKKOS_VERSION < 30700 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0) + update += Kokkos::pow(Kokkos::abs(data.values(i)), exp); +#else update += Kokkos::Experimental::pow( Kokkos::Experimental::fabs(data.values(i)), exp); -#else - update += Kokkos::pow(Kokkos::abs(data.values(i)), exp); #endif }, sum); diff --git a/include/deal.II/matrix_free/portable_matrix_free.templates.h b/include/deal.II/matrix_free/portable_matrix_free.templates.h index 17c8710964..c347aa648b 100644 --- a/include/deal.II/matrix_free/portable_matrix_free.templates.h +++ b/include/deal.II/matrix_free/portable_matrix_free.templates.h @@ -212,7 +212,7 @@ namespace Portable JxW_host; typename std::remove_reference_t< decltype(data->inv_jacobian[color])>::HostMirror inv_jacobian_host; -#if KOKKOS_VERSION >= 30600 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 6, 0) auto local_to_global_host = Kokkos::create_mirror_view(Kokkos::WithoutInitializing, data->local_to_global[color]); diff --git a/include/deal.II/matrix_free/portable_tensor_product_kernels.h b/include/deal.II/matrix_free/portable_tensor_product_kernels.h index 27a7c168fe..802ac3efa7 100644 --- a/include/deal.II/matrix_free/portable_tensor_product_kernels.h +++ b/include/deal.II/matrix_free/portable_tensor_product_kernels.h @@ -71,7 +71,7 @@ namespace Portable -#if KOKKOS_VERSION >= 40000 +#if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0) /** * Helper function for apply() in 1D */ @@ -303,7 +303,7 @@ namespace Portable const ViewTypeIn in, ViewTypeOut out) { -#if KOKKOS_VERSION >= 40000 +#if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0) if constexpr (dim == 1) apply_1d( team_member, shape_data, in, out); diff --git a/source/base/init_finalize.cc b/source/base/init_finalize.cc index 876f1359b3..9d95b6fa59 100644 --- a/source/base/init_finalize.cc +++ b/source/base/init_finalize.cc @@ -281,7 +281,7 @@ InitFinalize::InitFinalize([[maybe_unused]] int &argc, argv_new.push_back(arg); std::stringstream threads_flag; -#if KOKKOS_VERSION >= 30700 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0) threads_flag << "--kokkos-num-threads=" << MultithreadInfo::n_threads(); #else threads_flag << "--kokkos-threads=" << MultithreadInfo::n_threads(); diff --git a/source/base/kokkos.cc b/source/base/kokkos.cc index c6946a5c0f..686ea046e7 100644 --- a/source/base/kokkos.cc +++ b/source/base/kokkos.cc @@ -30,7 +30,7 @@ namespace internal ensure_kokkos_initialized() { if (!Kokkos::is_initialized() -#if KOKKOS_VERSION >= 30700 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0) && !Kokkos::is_finalized() #endif ) @@ -38,7 +38,7 @@ namespace internal // only execute once static bool dummy = []() { dealii_initialized_kokkos = true; -#if KOKKOS_VERSION >= 30700 +#if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0) const auto settings = Kokkos::InitializationSettings().set_num_threads( MultithreadInfo::n_threads()); -- 2.39.5