| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| #pragma once |
|
|
| #include <thrust/detail/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/cpp14_required.h> |
|
|
| #if THRUST_CPP_DIALECT >= 2014 |
|
|
| #include <thrust/execution_policy.h> |
| #include <thrust/detail/static_assert.h> |
|
|
| #include <utility> |
|
|
| |
| |
| |
| |
| |
| |
|
|
| |
| #define __THRUST_DEVICE_SYSTEM_POINTER_HEADER <__THRUST_DEVICE_SYSTEM_ROOT/pointer.h> |
| #include __THRUST_DEVICE_SYSTEM_POINTER_HEADER |
| #undef __THRUST_DEVICE_SYSTEM_POINTER_HEADER |
|
|
| |
| |
| |
| |
| |
| |
|
|
| |
| #define __THRUST_DEVICE_SYSTEM_FUTURE_HEADER <__THRUST_DEVICE_SYSTEM_ROOT/future.h> |
| #include __THRUST_DEVICE_SYSTEM_FUTURE_HEADER |
| #undef __THRUST_DEVICE_SYSTEM_FUTURE_HEADER |
|
|
| THRUST_NAMESPACE_BEGIN |
|
|
| |
|
|
| |
| |
| |
| |
| |
| |
|
|
| namespace unimplemented |
| { |
|
|
| struct no_unique_eager_event_type_found {}; |
|
|
| inline __host__ |
| no_unique_eager_event_type_found |
| unique_eager_event_type(...) noexcept; |
|
|
| struct no_unique_eager_future_type_found {}; |
|
|
| template <typename T> |
| __host__ |
| no_unique_eager_future_type_found |
| unique_eager_future_type(...) noexcept; |
|
|
| } |
|
|
| namespace unique_eager_event_type_detail |
| { |
|
|
| using unimplemented::unique_eager_event_type; |
|
|
| template <typename System> |
| using select = decltype( |
| unique_eager_event_type(std::declval<System>()) |
| ); |
|
|
| } |
|
|
| namespace unique_eager_future_type_detail |
| { |
|
|
| using unimplemented::unique_eager_future_type; |
|
|
| template <typename System, typename T> |
| using select = decltype( |
| unique_eager_future_type<T>(std::declval<System>()) |
| ); |
|
|
| } |
|
|
| |
|
|
| template <typename System> |
| using unique_eager_event = unique_eager_event_type_detail::select<System>; |
|
|
| template <typename System> |
| using event = unique_eager_event<System>; |
|
|
| |
|
|
| template <typename System, typename T> |
| using unique_eager_future = unique_eager_future_type_detail::select<System, T>; |
|
|
| template <typename System, typename T> |
| using future = unique_eager_future<System, T>; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
|
|
| using device_unique_eager_event = unique_eager_event_type_detail::select< |
| thrust::system::__THRUST_DEVICE_SYSTEM_NAMESPACE::tag |
| >; |
|
|
| using device_event = device_unique_eager_event; |
|
|
| |
|
|
| template <typename T> |
| using device_unique_eager_future = unique_eager_future_type_detail::select< |
| thrust::system::__THRUST_DEVICE_SYSTEM_NAMESPACE::tag, T |
| >; |
|
|
| template <typename T> |
| using device_future = device_unique_eager_future<T>; |
|
|
| |
|
|
| struct new_stream_t final {}; |
|
|
| THRUST_INLINE_CONSTANT new_stream_t new_stream{}; |
|
|
| |
|
|
| using thrust::system::__THRUST_DEVICE_SYSTEM_NAMESPACE::when_all; |
|
|
| |
|
|
| THRUST_NAMESPACE_END |
|
|
| #endif |
|
|