| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #ifndef _LIBCUDACXX___MDSPAN_CONFIG_HPP |
| #define _LIBCUDACXX___MDSPAN_CONFIG_HPP |
|
|
| #ifndef __cuda_std__ |
| #include <__config> |
| #endif |
|
|
| #if _LIBCUDACXX_STD_VER > 11 |
|
|
| #ifndef __has_include |
| # define __has_include(x) 0 |
| #endif |
|
|
| #ifndef __cuda_std__ |
| #if __has_include(<version>) |
| # include <version> |
| #else |
| # include <type_traits> |
| # include <utility> |
| #endif |
| #endif |
|
|
| #ifdef _MSVC_LANG |
| #define __MDSPAN_CPLUSPLUS _MSVC_LANG |
| #else |
| #define __MDSPAN_CPLUSPLUS __cplusplus |
| #endif |
|
|
| #define __MDSPAN_CXX_STD_14 201402L |
| #define __MDSPAN_CXX_STD_17 201703L |
| #define __MDSPAN_CXX_STD_20 202002L |
|
|
| #define __MDSPAN_HAS_CXX_14 (__MDSPAN_CPLUSPLUS >= __MDSPAN_CXX_STD_14) |
| #define __MDSPAN_HAS_CXX_17 (__MDSPAN_CPLUSPLUS >= __MDSPAN_CXX_STD_17) |
| #define __MDSPAN_HAS_CXX_20 (__MDSPAN_CPLUSPLUS >= __MDSPAN_CXX_STD_20) |
|
|
| static_assert(__MDSPAN_CPLUSPLUS >= __MDSPAN_CXX_STD_14, "mdspan requires C++14 or later."); |
|
|
| #ifndef __MDSPAN_COMPILER_CLANG |
| # if defined(__clang__) |
| # define __MDSPAN_COMPILER_CLANG __clang__ |
| # endif |
| #endif |
|
|
| #if !defined(__MDSPAN_COMPILER_MSVC) && !defined(__MDSPAN_COMPILER_MSVC_CLANG) |
| # if defined(_MSC_VER) |
| # if !defined(__MDSPAN_COMPILER_CLANG) |
| # define __MDSPAN_COMPILER_MSVC _MSC_VER |
| # else |
| # define __MDSPAN_COMPILER_MSVC_CLANG _MSC_VER |
| # endif |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_COMPILER_INTEL |
| # ifdef __INTEL_COMPILER |
| # define __MDSPAN_COMPILER_INTEL __INTEL_COMPILER |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_COMPILER_APPLECLANG |
| # ifdef __apple_build_version__ |
| # define __MDSPAN_COMPILER_APPLECLANG __apple_build_version__ |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_HAS_CUDA |
| # if defined(__CUDACC__) |
| # define __MDSPAN_HAS_CUDA __CUDACC__ |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_HAS_HIP |
| # if defined(__HIPCC__) |
| # define __MDSPAN_HAS_HIP __HIPCC__ |
| # endif |
| #endif |
|
|
| #ifndef __has_cpp_attribute |
| # define __has_cpp_attribute(x) 0 |
| #endif |
|
|
| #ifndef __MDSPAN_PRESERVE_STANDARD_LAYOUT |
| |
| |
| |
| # define __MDSPAN_PRESERVE_STANDARD_LAYOUT 1 |
| #endif |
|
|
| #ifndef __MDSPAN_USE_CONCEPTS |
| |
| # if defined(__cpp_concepts) && __cpp_concepts >= 201507L && !defined __cuda_std__ |
| # define __MDSPAN_USE_CONCEPTS 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_FOLD_EXPRESSIONS |
| # if (defined(__cpp_fold_expressions) && __cpp_fold_expressions >= 201603L) \ |
| || (!defined(__cpp_fold_expressions) && __MDSPAN_HAS_CXX_17) |
| # define __MDSPAN_USE_FOLD_EXPRESSIONS 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_NEEDS_TRAIT_VARIABLE_TEMPLATE_BACKPORTS |
| # if (!(defined(__cpp_lib_type_trait_variable_templates) && __cpp_lib_type_trait_variable_templates >= 201510L) \ |
| || !__MDSPAN_HAS_CXX_17) |
| # if !(defined(__MDSPAN_COMPILER_APPLECLANG) && __MDSPAN_HAS_CXX_17) |
| # define __MDSPAN_NEEDS_TRAIT_VARIABLE_TEMPLATE_BACKPORTS 1 |
| # endif |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_VARIABLE_TEMPLATES |
| # if (defined(__cpp_variable_templates) && __cpp_variable_templates >= 201304 && __MDSPAN_HAS_CXX_17) \ |
| || (!defined(__cpp_variable_templates) && __MDSPAN_HAS_CXX_17) |
| # define __MDSPAN_USE_VARIABLE_TEMPLATES 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_CONSTEXPR_14 |
| # if (defined(__cpp_constexpr) && __cpp_constexpr >= 201304) \ |
| || (!defined(__cpp_constexpr) && __MDSPAN_HAS_CXX_14) \ |
| && (!(defined(__INTEL_COMPILER) && __INTEL_COMPILER <= 1700)) |
| # define __MDSPAN_USE_CONSTEXPR_14 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_INTEGER_SEQUENCE |
| # if defined(__MDSPAN_COMPILER_MSVC) |
| # if (defined(__cpp_lib_integer_sequence) && __cpp_lib_integer_sequence >= 201304) |
| # define __MDSPAN_USE_INTEGER_SEQUENCE 1 |
| # endif |
| # endif |
| #endif |
| #ifndef __MDSPAN_USE_INTEGER_SEQUENCE |
| # if (defined(__cpp_lib_integer_sequence) && __cpp_lib_integer_sequence >= 201304) \ |
| || (!defined(__cpp_lib_integer_sequence) && __MDSPAN_HAS_CXX_14) \ |
| \ |
| || (defined(__GLIBCXX__) && __GLIBCXX__ > 20150422 && __GNUC__ < 5 && !defined(__INTEL_CXX11_MODE__)) |
| |
| # define __MDSPAN_USE_INTEGER_SEQUENCE 1 |
| # elif defined(__MDSPAN_COMPILER_APPLECLANG) && __MDSPAN_HAS_CXX_14 |
| |
| |
| # define __MDSPAN_USE_INTEGER_SEQUENCE 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_RETURN_TYPE_DEDUCTION |
| # if (defined(__cpp_return_type_deduction) && __cpp_return_type_deduction >= 201304) \ |
| || (!defined(__cpp_return_type_deduction) && __MDSPAN_HAS_CXX_14) |
| # define __MDSPAN_USE_RETURN_TYPE_DEDUCTION 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_CLASS_TEMPLATE_ARGUMENT_DEDUCTION |
| |
| # if (defined(__MDSPAN_COMPILER_CLANG) || !defined(_LIBCUDACXX_COMPILER_GCC) || __GNUC__ >= 11) \ |
| && ((defined(__cpp_deduction_guides) && __cpp_deduction_guides >= 201703) \ |
| || (!defined(__cpp_deduction_guides) && __MDSPAN_HAS_CXX_17)) |
| # define __MDSPAN_USE_CLASS_TEMPLATE_ARGUMENT_DEDUCTION 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_ALIAS_TEMPLATE_ARGUMENT_DEDUCTION |
| |
| # if (defined(__MDSPAN_COMPILER_CLANG) || !defined(_LIBCUDACXX_COMPILER_GCC) || __GNUC__ >= 11) \ |
| && ((defined(__cpp_deduction_guides) && __cpp_deduction_guides >= 201907) \ |
| || (!defined(__cpp_deduction_guides) && __MDSPAN_HAS_CXX_20)) |
| # define __MDSPAN_USE_ALIAS_TEMPLATE_ARGUMENT_DEDUCTION 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_STANDARD_TRAIT_ALIASES |
| # if (defined(__cpp_lib_transformation_trait_aliases) && __cpp_lib_transformation_trait_aliases >= 201304) \ |
| || (!defined(__cpp_lib_transformation_trait_aliases) && __MDSPAN_HAS_CXX_14) |
| # define __MDSPAN_USE_STANDARD_TRAIT_ALIASES 1 |
| # elif defined(__MDSPAN_COMPILER_APPLECLANG) && __MDSPAN_HAS_CXX_14 |
| |
| # define __MDSPAN_USE_STANDARD_TRAIT_ALIASES 1 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_DEFAULTED_CONSTRUCTORS_INHERITANCE_WORKAROUND |
| # ifdef __GNUC__ |
| # if __GNUC__ < 9 |
| # define __MDSPAN_DEFAULTED_CONSTRUCTORS_INHERITANCE_WORKAROUND 1 |
| # endif |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_CONDITIONAL_EXPLICIT |
| # if __MDSPAN_HAS_CXX_20 && !defined(__MDSPAN_COMPILER_MSVC) |
| # define __MDSPAN_CONDITIONAL_EXPLICIT(COND) explicit(COND) |
| # else |
| # define __MDSPAN_CONDITIONAL_EXPLICIT(COND) |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_BRACKET_OPERATOR |
| # if defined(__cpp_multidimensional_subscript) |
| # define __MDSPAN_USE_BRACKET_OPERATOR 1 |
| # else |
| # define __MDSPAN_USE_BRACKET_OPERATOR 0 |
| # endif |
| #endif |
|
|
| #ifndef __MDSPAN_USE_PAREN_OPERATOR |
| # if !__MDSPAN_USE_BRACKET_OPERATOR |
| # define __MDSPAN_USE_PAREN_OPERATOR 1 |
| # else |
| # define __MDSPAN_USE_PAREN_OPERATOR 0 |
| # endif |
| #endif |
|
|
| #if __MDSPAN_USE_BRACKET_OPERATOR |
| # define __MDSPAN_OP(mds,...) mds[__VA_ARGS__] |
| |
| |
| #ifdef __MDSPAN_NO_EMPTY_BRACKET_OPERATOR |
| # define __MDSPAN_OP0(mds) mds.accessor().access(mds.data_handle(),0) |
| #else |
| # define __MDSPAN_OP0(mds) mds[] |
| #endif |
| # define __MDSPAN_OP1(mds, a) mds[a] |
| # define __MDSPAN_OP2(mds, a, b) mds[a,b] |
| # define __MDSPAN_OP3(mds, a, b, c) mds[a,b,c] |
| # define __MDSPAN_OP4(mds, a, b, c, d) mds[a,b,c,d] |
| # define __MDSPAN_OP5(mds, a, b, c, d, e) mds[a,b,c,d,e] |
| # define __MDSPAN_OP6(mds, a, b, c, d, e, f) mds[a,b,c,d,e,f] |
| #else |
| # define __MDSPAN_OP(mds,...) mds(__VA_ARGS__) |
| # define __MDSPAN_OP0(mds) mds() |
| # define __MDSPAN_OP1(mds, a) mds(a) |
| # define __MDSPAN_OP2(mds, a, b) mds(a,b) |
| # define __MDSPAN_OP3(mds, a, b, c) mds(a,b,c) |
| # define __MDSPAN_OP4(mds, a, b, c, d) mds(a,b,c,d) |
| # define __MDSPAN_OP5(mds, a, b, c, d, e) mds(a,b,c,d,e) |
| # define __MDSPAN_OP6(mds, a, b, c, d, e, f) mds(a,b,c,d,e,f) |
| #endif |
|
|
| #endif |
|
|
| #endif |
|
|