| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| #pragma once |
|
|
| #include <thrust/detail/config/config.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 |
|
|
| #include <thrust/detail/config/compiler.h> |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| #if !defined(THRUST_IGNORE_DEPRECATED_CPP_DIALECT) && \ |
| defined(CUB_IGNORE_DEPRECATED_CPP_DIALECT) |
| # define THRUST_IGNORE_DEPRECATED_CPP_DIALECT |
| #endif |
| #if !defined(THRUST_IGNORE_DEPRECATED_CPP_11) && \ |
| defined(CUB_IGNORE_DEPRECATED_CPP_11) |
| # define THRUST_IGNORE_DEPRECATED_CPP_11 |
| #endif |
| #if !defined(THRUST_IGNORE_DEPRECATED_COMPILER) && \ |
| defined(CUB_IGNORE_DEPRECATED_COMPILER) |
| # define THRUST_IGNORE_DEPRECATED_COMPILER |
| #endif |
|
|
| #ifdef THRUST_IGNORE_DEPRECATED_CPP_DIALECT |
| # define THRUST_IGNORE_DEPRECATED_CPP_11 |
| # define THRUST_IGNORE_DEPRECATED_COMPILER |
| #endif |
|
|
| |
| #ifndef THRUST_CPP_DIALECT |
|
|
| |
| |
| # ifdef _MSVC_LANG |
| |
| # if THRUST_MSVC_VERSION < 1910 && _MSVC_LANG > 201103L |
| # define THRUST_CPLUSPLUS 201103L |
| # else |
| # define THRUST_CPLUSPLUS _MSVC_LANG |
| # endif |
| # else |
| # define THRUST_CPLUSPLUS __cplusplus |
| # endif |
|
|
| |
| # if THRUST_CPLUSPLUS < 201103L |
| # define THRUST_CPP_DIALECT 2003 |
| # elif THRUST_CPLUSPLUS < 201402L |
| # define THRUST_CPP_DIALECT 2011 |
| # elif THRUST_CPLUSPLUS < 201703L |
| # define THRUST_CPP_DIALECT 2014 |
| # elif THRUST_CPLUSPLUS == 201703L |
| # define THRUST_CPP_DIALECT 2017 |
| # elif THRUST_CPLUSPLUS > 201703L |
| # define THRUST_CPP_DIALECT 2020 |
| # endif |
|
|
| # undef THRUST_CPLUSPLUS |
|
|
| #endif |
|
|
| |
| #if THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_MSVC |
| # define THRUST_COMP_DEPR_IMPL(msg) \ |
| __pragma(message(__FILE__ ":" THRUST_COMP_DEPR_IMPL0(__LINE__) ": warning: " #msg)) |
| # define THRUST_COMP_DEPR_IMPL0(x) THRUST_COMP_DEPR_IMPL1(x) |
| # define THRUST_COMP_DEPR_IMPL1(x) #x |
| #else |
| # define THRUST_COMP_DEPR_IMPL(msg) THRUST_COMP_DEPR_IMPL0(GCC warning #msg) |
| # define THRUST_COMP_DEPR_IMPL0(expr) _Pragma(#expr) |
| # define THRUST_COMP_DEPR_IMPL1 |
| #endif |
|
|
| #define THRUST_COMPILER_DEPRECATION(REQ) \ |
| THRUST_COMP_DEPR_IMPL(Thrust requires at least REQ. Define THRUST_IGNORE_DEPRECATED_COMPILER to suppress this message.) |
|
|
| #define THRUST_COMPILER_DEPRECATION_SOFT(REQ, CUR) \ |
| THRUST_COMP_DEPR_IMPL(Thrust requires at least REQ. CUR is deprecated but still supported. CUR support will be removed in a future release. Define THRUST_IGNORE_DEPRECATED_CPP_DIALECT to suppress this message.) |
|
|
| #ifndef THRUST_IGNORE_DEPRECATED_COMPILER |
|
|
| |
| # if THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_GCC && THRUST_GCC_VERSION < 50000 |
| THRUST_COMPILER_DEPRECATION(GCC 5.0); |
| # elif THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_CLANG && THRUST_CLANG_VERSION < 70000 |
| THRUST_COMPILER_DEPRECATION(Clang 7.0); |
| # elif THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_MSVC && THRUST_MSVC_VERSION < 1910 |
| |
| THRUST_COMPILER_DEPRECATION(MSVC 2019 (19.20/16.0/14.20)); |
| # elif THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_MSVC && THRUST_MSVC_VERSION < 1920 |
| |
| THRUST_COMPILER_DEPRECATION_SOFT(MSVC 2019 (19.20/16.0/14.20), MSVC 2017); |
| # endif |
|
|
| #endif |
|
|
| #ifndef THRUST_IGNORE_DEPRECATED_DIALECT |
|
|
| |
| # if THRUST_CPP_DIALECT < 2011 |
| |
| THRUST_COMPILER_DEPRECATION(C++14); |
| # elif THRUST_CPP_DIALECT == 2011 && !defined(THRUST_IGNORE_DEPRECATED_CPP_11) |
| |
| THRUST_COMPILER_DEPRECATION_SOFT(C++14, C++11); |
| # endif |
|
|
| #endif |
|
|
| #undef THRUST_COMPILER_DEPRECATION_SOFT |
| #undef THRUST_COMPILER_DEPRECATION |
| #undef THRUST_COMP_DEPR_IMPL |
| #undef THRUST_COMP_DEPR_IMPL0 |
| #undef THRUST_COMP_DEPR_IMPL1 |
|
|