From d475d4e3fe07a651437288104e9b9cc1f8474ec4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 14 Mar 2025 10:10:45 -0600 Subject: [PATCH] Ensure that Kokkos's symbols have external linkage and, consequently, can be re-exported. --- bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp | 6 ++++-- bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp | 12 ++++++++---- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp b/bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp index 2bb323b4a6..e5a033b7f5 100644 --- a/bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp +++ b/bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp @@ -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 diff --git a/bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp b/bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp index e92ed7d2e9..d980d0ffc4 100644 --- a/bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp +++ b/bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp @@ -528,18 +528,22 @@ constexpr bool is_assignable(const Kokkos::View& 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: -- 2.39.5