| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #ifndef _LIBCUDACXX___UTILITY_CONVERT_TO_INTEGRAL_H |
| #define _LIBCUDACXX___UTILITY_CONVERT_TO_INTEGRAL_H |
|
|
| #ifndef __cuda_std__ |
| #include <__config> |
| #endif |
|
|
| #include "../__type_traits/enable_if.h" |
| #include "../__type_traits/is_enum.h" |
| #include "../__type_traits/is_floating_point.h" |
| #include "../__type_traits/underlying_type.h" |
|
|
| #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) |
| # pragma GCC system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) |
| # pragma clang system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) |
| # pragma system_header |
| #endif |
|
|
| _LIBCUDACXX_BEGIN_NAMESPACE_STD |
|
|
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| int __convert_to_integral(int __val) { return __val; } |
|
|
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| unsigned __convert_to_integral(unsigned __val) { return __val; } |
|
|
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| long __convert_to_integral(long __val) { return __val; } |
|
|
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| unsigned long __convert_to_integral(unsigned long __val) { return __val; } |
|
|
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| long long __convert_to_integral(long long __val) { return __val; } |
|
|
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| unsigned long long __convert_to_integral(unsigned long long __val) {return __val; } |
|
|
| template<typename _Fp> |
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| __enable_if_t<is_floating_point<_Fp>::value, long long> |
| __convert_to_integral(_Fp __val) { return __val; } |
|
|
| #ifndef _LIBCUDACXX_HAS_NO_INT128 |
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| __int128_t __convert_to_integral(__int128_t __val) { return __val; } |
|
|
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| __uint128_t __convert_to_integral(__uint128_t __val) { return __val; } |
| #endif |
|
|
| template <class _Tp, bool = is_enum<_Tp>::value> |
| struct __sfinae_underlying_type |
| { |
| typedef typename underlying_type<_Tp>::type type; |
| typedef decltype(((type)1) + 0) __promoted_type; |
| }; |
|
|
| template <class _Tp> |
| struct __sfinae_underlying_type<_Tp, false> {}; |
|
|
| template <class _Tp> |
| inline _LIBCUDACXX_INLINE_VISIBILITY constexpr |
| typename __sfinae_underlying_type<_Tp>::__promoted_type |
| __convert_to_integral(_Tp __val) { return __val; } |
|
|
| _LIBCUDACXX_END_NAMESPACE_STD |
|
|
| #endif |
|
|