// (C) Copyright John Maddock 2010. // (C) Copyright Matt Borland 2024. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_MATH_TUPLE_HPP_INCLUDED #define BOOST_MATH_TUPLE_HPP_INCLUDED #include #ifdef BOOST_MATH_ENABLE_CUDA #include #include #include namespace boost { namespace math { using cuda::std::pair; using cuda::std::tuple; using cuda::std::make_pair; using cuda::std::tie; using cuda::std::get; using cuda::std::tuple_size; using cuda::std::tuple_element; namespace detail { template BOOST_MATH_GPU_ENABLED T&& forward(boost::math::remove_reference_t& arg) noexcept { return static_cast(arg); } template BOOST_MATH_GPU_ENABLED T&& forward(boost::math::remove_reference_t&& arg) noexcept { static_assert(!boost::math::is_lvalue_reference::value, "Cannot forward an rvalue as an lvalue."); return static_cast(arg); } } // namespace detail template BOOST_MATH_GPU_ENABLED auto make_tuple(T&& t, Ts&&... ts) { return cuda::std::tuple, boost::math::decay_t...>( boost::math::detail::forward(t), boost::math::detail::forward(ts)... ); } } // namespace math } // namespace boost #else #include namespace boost { namespace math { using ::std::tuple; using ::std::pair; // [6.1.3.2] Tuple creation functions using ::std::ignore; using ::std::make_tuple; using ::std::tie; using ::std::get; // [6.1.3.3] Tuple helper classes using ::std::tuple_size; using ::std::tuple_element; // Pair helpers using ::std::make_pair; } // namespace math } // namespace boost #endif // BOOST_MATH_ENABLE_CUDA #endif