]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Make use of DEAL_II_KOKKOS_VERSION_GTE. 18305/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Mon, 31 Mar 2025 16:52:14 +0000 (10:52 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Mon, 31 Mar 2025 16:52:14 +0000 (10:52 -0600)
include/deal.II/base/exception_macros.h
include/deal.II/base/exceptions.h
include/deal.II/base/memory_space_data.h
include/deal.II/base/tensor.h
include/deal.II/base/utilities.h
include/deal.II/lac/la_parallel_vector.templates.h
include/deal.II/lac/vector_operations_internal.h
include/deal.II/matrix_free/portable_matrix_free.templates.h
include/deal.II/matrix_free/portable_tensor_product_kernels.h
source/base/init_finalize.cc
source/base/kokkos.cc

index befdf5f9b4d0d81d8346a9ad452a1db06e86e9c1..151b899f373593ebcaa6ffa6dbd251b13c38aa66 100644 (file)
  * @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                                                                     \
           }                                                                    \
         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)                                              \
index 373ae8849cf68d92162521303f89670416a7464c..7f85c4f900b9134970e4848123a6918b852dff8f 100644 (file)
@@ -26,7 +26,7 @@
 // all having to include Kokkos headers, we have to do it here:
 DEAL_II_DISABLE_EXTRA_DIAGNOSTICS
 #include <Kokkos_Macros.hpp>
-#if KOKKOS_VERSION >= 40200
+#if DEAL_II_KOKKOS_VERSION_GTE(4, 2, 0)
 #  include <Kokkos_Abort.hpp>
 #else
 #  include <Kokkos_Core.hpp>
index 2dfe06690772e8f32360e5ee51075fa541a6eae3..3c126e9ff4c96b80655d5dbfae37ad5dc43e9bbe 100644 (file)
@@ -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<T *, Kokkos::HostSpace> values_host_buffer;
-#else
+#if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0)
     Kokkos::View<T *, Kokkos::SharedHostPinnedSpace> values_host_buffer;
+#else
+    Kokkos::View<T *, Kokkos::HostSpace> values_host_buffer;
 #endif
 
     /**
@@ -108,11 +108,11 @@ namespace MemorySpace
   MemorySpaceData<T, MemorySpace>::MemorySpaceData()
     : values_host_buffer(
         (dealii::internal::ensure_kokkos_initialized(),
-#  if KOKKOS_VERSION < 40000
-         Kokkos::View<T *, Kokkos::HostSpace>("host buffer", 0)))
-#  else
+#  if DEAL_II_KOKKOS_VERSION_GTE(4, 0, 0)
          Kokkos::View<T *, Kokkos::SharedHostPinnedSpace>("host pinned buffer",
                                                           0)))
+#  else
+         Kokkos::View<T *, Kokkos::HostSpace>("host buffer", 0)))
 #  endif
     , values(Kokkos::View<T *, typename MemorySpace::kokkos_space>(
         "memoryspace data",
index 6a4ffc0875d5e1cd860404c40c54fd83d661513c..000e115e0dbec21c73908b86ac328a0a505b7965 100644 (file)
@@ -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<rank_ == 1,
                      Kokkos::Array<Number, dim>,
                      Kokkos::Array<Tensor<rank_ - 1, dim, Number>, dim>>
@@ -1104,7 +1104,7 @@ namespace internal
     constexpr DEAL_II_HOST_DEVICE_ALWAYS_INLINE void
     multiply_assign_scalar(std::complex<Number> &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 <int rank, int dim, typename Number, std::size_t... I>
-#    if KOKKOS_VERSION >= 30700
+#    if DEAL_II_KOKKOS_VERSION_GTE(3, 7, 0)
     constexpr Kokkos::Array<typename Tensor<rank, dim, Number>::value_type, dim>
 #    else
     constexpr std::array<typename Tensor<rank, dim, Number>::value_type, dim>
index b81ff966512acb55ac73708a95543c54720a7b15..c139a8c66b092a761c0cc05d207d4e1c0e0afe17 100644 (file)
@@ -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(
index ef8fcdab85ca7fa6b77f19c6254dbadbed4f446d..5b7f6ff0516853d7178dac287ad2ec7171b49bd5 100644 (file)
@@ -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<RealType, Kokkos::HostSpace>(result));
@@ -992,7 +992,7 @@ namespace LinearAlgebra
           if (std::is_same_v<MemorySpaceType, dealii::MemorySpace::Default>)
             {
               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<MemorySpaceType, MemorySpace::Default>)
             {
               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
 
index 7760ac83e99e1f1c76d0f6b8322d26ef5a941157..40817aa6ff609810452a129c839fa5b0e75ed043 100644 (file)
@@ -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);
index 17c8710964a4defba5f94d3eb711a72151cd03c8..c347aa648bd84bd4b4ef364dc3efd18162e59c3c 100644 (file)
@@ -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]);
index 27a7c168fe5d8b1f9c433c833accadb901f05cea..802ac3efa705642903b23eb3770feb88b6fcc0d4 100644 (file)
@@ -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<n_rows, n_columns, direction, Number, contract_over_rows, add>(
           team_member, shape_data, in, out);
index 876f1359b3e876ddd5129c957c2562fe42bff386..9d95b6fa59ad5fa9058a09f09b9ba86e7db2e4f9 100644 (file)
@@ -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();
index c6946a5c0fcd6b43c75a46ce7f8d2f8da49f9ebe..686ea046e753d0cb3ab0ad2512354ec6066eb5dc 100644 (file)
@@ -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());

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.