// Copyright John Maddock 2007. // Copyright Matt Borland 2023. // 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_TRUNC_HPP #define BOOST_MATH_TRUNC_HPP #ifdef _MSC_VER #pragma once #endif #include #include #include #ifndef BOOST_MATH_HAS_NVRTC #include #include #include #include #include #include #if !defined(BOOST_MATH_NO_CCMATH) && !defined(BOOST_MATH_NO_CONSTEXPR_DETECTION) #include # define BOOST_MATH_HAS_CONSTEXPR_LDEXP #endif namespace boost{ namespace math{ namespace detail{ template BOOST_MATH_GPU_ENABLED inline tools::promote_args_t trunc(const T& v, const Policy& pol, const std::false_type&) { BOOST_MATH_STD_USING using result_type = tools::promote_args_t; if(!(boost::math::isfinite)(v)) { return policies::raise_rounding_error("boost::math::trunc<%1%>(%1%)", nullptr, static_cast(v), static_cast(v), pol); } return (v >= 0) ? static_cast(floor(v)) : static_cast(ceil(v)); } template BOOST_MATH_GPU_ENABLED inline tools::promote_args_t trunc(const T& v, const Policy&, const std::true_type&) { return v; } } // Namespace detail template BOOST_MATH_GPU_ENABLED inline tools::promote_args_t trunc(const T& v, const Policy& pol) { return detail::trunc(v, pol, std::integral_constant::value>()); } template BOOST_MATH_GPU_ENABLED inline tools::promote_args_t trunc(const T& v) { return trunc(v, policies::policy<>()); } #else // Special handling for nvrtc namespace boost { namespace math { namespace detail { template BOOST_MATH_GPU_ENABLED double trunc_impl(T x) { return static_cast(x); } BOOST_MATH_GPU_ENABLED inline float trunc_impl(float x) { return ::truncf(x); } BOOST_MATH_GPU_ENABLED inline double trunc_impl(double x) { return ::trunc(x); } } // Namespace detail template BOOST_MATH_GPU_ENABLED auto trunc(T x, const Policy&) { return detail::trunc_impl(x); } template BOOST_MATH_GPU_ENABLED auto trunc(T x) { return detail::trunc_impl(x); } #endif #ifndef BOOST_MATH_HAS_NVRTC // // The following functions will not compile unless T has an // implicit conversion to the integer types. For user-defined // number types this will likely not be the case. In that case // these functions should either be specialized for the UDT in // question, or else overloads should be placed in the same // namespace as the UDT: these will then be found via argument // dependent lookup. See our concept archetypes for examples. // // Non-standard numeric limits syntax "(std::numeric_limits::max)()" // is to avoid macro substiution from MSVC // https://stackoverflow.com/questions/27442885/syntax-error-with-stdnumeric-limitsmax // template BOOST_MATH_GPU_ENABLED inline int itrunc(const T& v, const Policy& pol) { BOOST_MATH_STD_USING using result_type = tools::promote_args_t; result_type r = boost::math::trunc(v, pol); #if defined(BOOST_MATH_HAS_CONSTEXPR_LDEXP) && !defined(BOOST_MATH_HAS_GPU_SUPPORT) if constexpr (std::is_arithmetic_v #ifdef BOOST_MATH_FLOAT128_TYPE && !std::is_same_v #endif ) { constexpr result_type max_val = boost::math::ccmath::ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::itrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } } else { static const result_type max_val = ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::itrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } } #else BOOST_MATH_STATIC_LOCAL_VARIABLE const result_type max_val = ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::itrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } #endif return static_cast(r); } template BOOST_MATH_GPU_ENABLED inline int itrunc(const T& v) { return itrunc(v, policies::policy<>()); } template BOOST_MATH_GPU_ENABLED inline long ltrunc(const T& v, const Policy& pol) { BOOST_MATH_STD_USING using result_type = tools::promote_args_t; result_type r = boost::math::trunc(v, pol); #if defined(BOOST_MATH_HAS_CONSTEXPR_LDEXP) && !defined(BOOST_MATH_HAS_GPU_SUPPORT) if constexpr (std::is_arithmetic_v #ifdef BOOST_MATH_FLOAT128_TYPE && !std::is_same_v #endif ) { constexpr result_type max_val = boost::math::ccmath::ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::ltrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } } else { static const result_type max_val = ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::ltrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } } #else BOOST_MATH_STATIC_LOCAL_VARIABLE const result_type max_val = ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::ltrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } #endif return static_cast(r); } template BOOST_MATH_GPU_ENABLED inline long ltrunc(const T& v) { return ltrunc(v, policies::policy<>()); } template BOOST_MATH_GPU_ENABLED inline long long lltrunc(const T& v, const Policy& pol) { BOOST_MATH_STD_USING using result_type = tools::promote_args_t; result_type r = boost::math::trunc(v, pol); #if defined(BOOST_MATH_HAS_CONSTEXPR_LDEXP) && !defined(BOOST_MATH_HAS_GPU_SUPPORT) if constexpr (std::is_arithmetic_v #ifdef BOOST_MATH_FLOAT128_TYPE && !std::is_same_v #endif ) { constexpr result_type max_val = boost::math::ccmath::ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::lltrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } } else { static const result_type max_val = ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::lltrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } } #else BOOST_MATH_STATIC_LOCAL_VARIABLE const result_type max_val = ldexp(static_cast(1), std::numeric_limits::digits); if (r >= max_val || r < -max_val) { return static_cast(boost::math::policies::raise_rounding_error("boost::math::lltrunc<%1%>(%1%)", nullptr, v, static_cast(0), pol)); } #endif return static_cast(r); } template BOOST_MATH_GPU_ENABLED inline long long lltrunc(const T& v) { return lltrunc(v, policies::policy<>()); } #else // Reduced impl specifically for NVRTC platform namespace detail { template BOOST_MATH_GPU_ENABLED TargetType integer_trunc_impl(T v) { double r = boost::math::trunc(v); const double max_val = ldexp(1.0, boost::math::numeric_limits::digits); if (r >= max_val || r < -max_val) { r = 0; } return static_cast(r); } } // Namespace detail template BOOST_MATH_GPU_ENABLED int itrunc(T v) { return detail::integer_trunc_impl(v); } template BOOST_MATH_GPU_ENABLED int itrunc(T v, const Policy&) { return detail::integer_trunc_impl(v); } template BOOST_MATH_GPU_ENABLED long ltrunc(T v) { return detail::integer_trunc_impl(v); } template BOOST_MATH_GPU_ENABLED long ltrunc(T v, const Policy&) { return detail::integer_trunc_impl(v); } template BOOST_MATH_GPU_ENABLED long long lltrunc(T v) { return detail::integer_trunc_impl(v); } template BOOST_MATH_GPU_ENABLED long long lltrunc(T v, const Policy&) { return detail::integer_trunc_impl(v); } #endif // BOOST_MATH_HAS_NVRTC template BOOST_MATH_GPU_ENABLED inline boost::math::enable_if_t, int> iconvert(const T& v, const Policy&) { return static_cast(v); } template BOOST_MATH_GPU_ENABLED inline boost::math::enable_if_t, int> iconvert(const T& v, const Policy& pol) { using boost::math::itrunc; return itrunc(v, pol); } template BOOST_MATH_GPU_ENABLED inline boost::math::enable_if_t, long> lconvert(const T& v, const Policy&) { return static_cast(v); } template BOOST_MATH_GPU_ENABLED inline boost::math::enable_if_t, long> lconvert(const T& v, const Policy& pol) { using boost::math::ltrunc; return ltrunc(v, pol); } template BOOST_MATH_GPU_ENABLED inline boost::math::enable_if_t, long long> llconvert(const T& v, const Policy&) { return static_cast(v); } template BOOST_MATH_GPU_ENABLED inline typename boost::math::enable_if_t, long long> llconvert(const T& v, const Policy& pol) { using boost::math::lltrunc; return lltrunc(v, pol); } template BOOST_MATH_GPU_ENABLED [[deprecated("Use llconvert")]] inline boost::math::enable_if_t, long long> llconvertert(const T& v, const Policy&) { return static_cast(v); } template BOOST_MATH_GPU_ENABLED [[deprecated("Use llconvert")]] inline typename boost::math::enable_if_t, long long> llconvertert(const T& v, const Policy& pol) { using boost::math::lltrunc; return lltrunc(v, pol); } }} // namespaces #endif // BOOST_MATH_TRUNC_HPP