]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Ensure that Kokkos's symbols have external linkage and, consequently, can be re-exported.
authorWolfgang Bangerth <bangerth@colostate.edu>
Fri, 14 Mar 2025 16:10:45 +0000 (10:10 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Thu, 27 Mar 2025 21:14:01 +0000 (15:14 -0600)
bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp
bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp

index 2bb323b4a6a9f10511ebc47f271d0bee6cbc9c55..e5a033b7f5d5edf8d054dbc58f427f0623643d5d 100644 (file)
@@ -76,12 +76,14 @@ struct AUTO_t {
   constexpr const AUTO_t &operator()() const { return *this; }
 };
 
-namespace {
+namespace Constants {
 /**\brief Token to indicate that a parameter's value is to be automatically
  * selected */
-constexpr AUTO_t AUTO = Kokkos::AUTO_t();
+inline const AUTO_t AUTO = Kokkos::AUTO_t();
 }  // namespace
 
+using Constants::AUTO;
+
 struct InvalidType {};
 
 }  // namespace Kokkos
index e92ed7d2e91395aef45292b3a3b3a4f5c9cd5cf7..d980d0ffc4138e61b0037031c98c63ed70ea6144 100644 (file)
@@ -528,18 +528,22 @@ constexpr bool is_assignable(const Kokkos::View<ViewTDst...>& dst,
 
 namespace Kokkos {
 
-namespace {
+namespace Constants {
 
-constexpr Kokkos::Impl::ALL_t ALL = Kokkos::Impl::ALL_t();
+inline const Kokkos::Impl::ALL_t ALL = Kokkos::Impl::ALL_t();
 
-constexpr Kokkos::Impl::WithoutInitializing_t WithoutInitializing =
+inline const Kokkos::Impl::WithoutInitializing_t WithoutInitializing =
     Kokkos::Impl::WithoutInitializing_t();
 
-constexpr Kokkos::Impl::AllowPadding_t AllowPadding =
+inline const Kokkos::Impl::AllowPadding_t AllowPadding =
     Kokkos::Impl::AllowPadding_t();
 
 }  // namespace
 
+using Constants::ALL;
+using Constants::WithoutInitializing;
+using Constants::AllowPadding;
+
 /** \brief  Create View allocation parameter bundle from argument list.
  *
  *  Valid argument list members are:

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.