| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| #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/detail/static_assert.h> |
| #include <thrust/detail/select_system.h> |
| #include <thrust/type_traits/logical_metafunctions.h> |
| #include <thrust/type_traits/remove_cvref.h> |
| #include <thrust/type_traits/is_execution_policy.h> |
| #include <thrust/system/detail/adl/async/reduce.h> |
|
|
| #include <thrust/future.h> |
|
|
| THRUST_NAMESPACE_BEGIN |
|
|
| namespace async |
| { |
|
|
| |
| |
|
|
| namespace unimplemented |
| { |
|
|
| template < |
| typename DerivedPolicy |
| , typename ForwardIt, typename Sentinel, typename T, typename BinaryOp |
| > |
| __host__ |
| future<DerivedPolicy, T> |
| async_reduce( |
| thrust::execution_policy<DerivedPolicy>&, ForwardIt, Sentinel, T, BinaryOp |
| ) |
| { |
| THRUST_STATIC_ASSERT_MSG( |
| (thrust::detail::depend_on_instantiation<ForwardIt, false>::value) |
| , "this algorithm is not implemented for the specified system" |
| ); |
| return {}; |
| } |
|
|
| } |
|
|
| namespace reduce_detail |
| { |
|
|
| using thrust::async::unimplemented::async_reduce; |
|
|
| struct reduce_fn final |
| { |
| template < |
| typename DerivedPolicy |
| , typename ForwardIt, typename Sentinel, typename T, typename BinaryOp |
| > |
| __host__ |
| static auto call( |
| thrust::detail::execution_policy_base<DerivedPolicy> const& exec |
| , ForwardIt&& first, Sentinel&& last |
| , T&& init |
| , BinaryOp&& op |
| ) |
| |
| THRUST_RETURNS( |
| async_reduce( |
| thrust::detail::derived_cast(thrust::detail::strip_const(exec)) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(init) |
| , THRUST_FWD(op) |
| ) |
| ) |
|
|
| template < |
| typename DerivedPolicy |
| , typename ForwardIt, typename Sentinel, typename T |
| > |
| __host__ |
| static auto call4( |
| thrust::detail::execution_policy_base<DerivedPolicy> const& exec |
| , ForwardIt&& first, Sentinel&& last |
| , T&& init |
| , thrust::true_type |
| ) |
| |
| THRUST_RETURNS( |
| async_reduce( |
| thrust::detail::derived_cast(thrust::detail::strip_const(exec)) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(init) |
| , thrust::plus<remove_cvref_t<T>>{} |
| ) |
| ) |
|
|
| template < |
| typename DerivedPolicy |
| , typename ForwardIt, typename Sentinel |
| > |
| __host__ |
| static auto |
| call3( |
| thrust::detail::execution_policy_base<DerivedPolicy> const& exec |
| , ForwardIt&& first, Sentinel&& last |
| , thrust::true_type |
| ) |
| |
| THRUST_RETURNS( |
| async_reduce( |
| thrust::detail::derived_cast(thrust::detail::strip_const(exec)) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , typename iterator_traits<remove_cvref_t<ForwardIt>>::value_type{} |
| , thrust::plus< |
| remove_cvref_t< |
| typename iterator_traits<remove_cvref_t<ForwardIt>>::value_type |
| > |
| >{} |
| ) |
| ) |
|
|
| template <typename ForwardIt, typename Sentinel, typename T, typename BinaryOp> |
| __host__ |
| static auto call4(ForwardIt&& first, Sentinel&& last, |
| T&& init, |
| BinaryOp&& op, |
| thrust::false_type) |
| THRUST_RETURNS( |
| reduce_fn::call( |
| thrust::detail::select_system( |
| typename iterator_system<remove_cvref_t<ForwardIt>>::type{} |
| ) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(init) |
| , THRUST_FWD(op) |
| ) |
| ) |
|
|
| template <typename ForwardIt, typename Sentinel, typename T> |
| __host__ |
| static auto call3(ForwardIt&& first, Sentinel&& last, |
| T&& init, |
| thrust::false_type) |
| THRUST_RETURNS( |
| reduce_fn::call( |
| thrust::detail::select_system( |
| typename iterator_system<remove_cvref_t<ForwardIt>>::type{} |
| ) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(init) |
| , thrust::plus<remove_cvref_t<T>>{} |
| ) |
| ) |
|
|
| |
| |
| |
| template <typename T1, typename T2, typename T3> |
| __host__ |
| static auto call(T1&& t1, T2&& t2, T3&& t3) |
| THRUST_RETURNS( |
| reduce_fn::call3(THRUST_FWD(t1), THRUST_FWD(t2), THRUST_FWD(t3), |
| thrust::is_execution_policy<thrust::remove_cvref_t<T1>>{}) |
| ) |
|
|
| template <typename T1, typename T2, typename T3, typename T4> |
| __host__ |
| static auto call(T1&& t1, T2&& t2, T3&& t3, T4&& t4) |
| THRUST_RETURNS( |
| reduce_fn::call4(THRUST_FWD(t1), THRUST_FWD(t2), THRUST_FWD(t3), THRUST_FWD(t4), |
| thrust::is_execution_policy<thrust::remove_cvref_t<T1>>{}) |
| ) |
|
|
| template <typename ForwardIt, typename Sentinel> |
| __host__ |
| static auto call(ForwardIt&& first, Sentinel&& last) |
| THRUST_RETURNS( |
| reduce_fn::call( |
| thrust::detail::select_system( |
| typename iterator_system<remove_cvref_t<ForwardIt>>::type{} |
| ) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , typename iterator_traits<remove_cvref_t<ForwardIt>>::value_type{} |
| , thrust::plus< |
| remove_cvref_t< |
| typename iterator_traits<remove_cvref_t<ForwardIt>>::value_type |
| > |
| >{} |
| ) |
| ) |
|
|
| template <typename... Args> |
| THRUST_NODISCARD __host__ |
| auto operator()(Args&&... args) const |
| THRUST_RETURNS( |
| call(THRUST_FWD(args)...) |
| ) |
| }; |
|
|
| } |
|
|
| THRUST_INLINE_CONSTANT reduce_detail::reduce_fn reduce{}; |
|
|
| |
|
|
| namespace unimplemented |
| { |
|
|
| template < |
| typename DerivedPolicy |
| , typename ForwardIt, typename Sentinel, typename OutputIt |
| , typename T, typename BinaryOp |
| > |
| __host__ |
| event<DerivedPolicy> |
| async_reduce_into( |
| thrust::execution_policy<DerivedPolicy>& |
| , ForwardIt, Sentinel, OutputIt, T, BinaryOp |
| ) |
| { |
| THRUST_STATIC_ASSERT_MSG( |
| (thrust::detail::depend_on_instantiation<ForwardIt, false>::value) |
| , "this algorithm is not implemented for the specified system" |
| ); |
| return {}; |
| } |
|
|
| } |
|
|
| namespace reduce_into_detail |
| { |
|
|
| using thrust::async::unimplemented::async_reduce_into; |
|
|
| struct reduce_into_fn final |
| { |
| template < |
| typename DerivedPolicy |
| , typename ForwardIt, typename Sentinel, typename OutputIt |
| , typename T, typename BinaryOp |
| > |
| __host__ |
| static auto call( |
| thrust::detail::execution_policy_base<DerivedPolicy> const& exec |
| , ForwardIt&& first, Sentinel&& last |
| , OutputIt&& output |
| , T&& init |
| , BinaryOp&& op |
| ) |
| |
| THRUST_RETURNS( |
| async_reduce_into( |
| thrust::detail::derived_cast(thrust::detail::strip_const(exec)) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(output) |
| , THRUST_FWD(init) |
| , THRUST_FWD(op) |
| ) |
| ) |
|
|
| template < |
| typename DerivedPolicy |
| , typename ForwardIt, typename Sentinel, typename OutputIt |
| , typename T |
| > |
| __host__ |
| static auto call5( |
| thrust::detail::execution_policy_base<DerivedPolicy> const& exec |
| , ForwardIt&& first, Sentinel&& last |
| , OutputIt&& output |
| , T&& init |
| , thrust::true_type |
| ) |
| |
| THRUST_RETURNS( |
| async_reduce_into( |
| thrust::detail::derived_cast(thrust::detail::strip_const(exec)) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(output) |
| , THRUST_FWD(init) |
| , thrust::plus<remove_cvref_t<T>>{} |
| ) |
| ) |
|
|
| template < |
| typename DerivedPolicy |
| , typename ForwardIt, typename Sentinel, typename OutputIt |
| > |
| __host__ |
| static auto |
| call4( |
| thrust::detail::execution_policy_base<DerivedPolicy> const& exec |
| , ForwardIt&& first, Sentinel&& last |
| , OutputIt&& output |
| , thrust::true_type |
| ) |
| |
| THRUST_RETURNS( |
| async_reduce_into( |
| thrust::detail::derived_cast(thrust::detail::strip_const(exec)) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(output) |
| , typename iterator_traits<remove_cvref_t<ForwardIt>>::value_type{} |
| , thrust::plus< |
| remove_cvref_t< |
| typename iterator_traits<remove_cvref_t<ForwardIt>>::value_type |
| > |
| >{} |
| ) |
| ) |
|
|
| template < |
| typename ForwardIt, typename Sentinel, typename OutputIt |
| , typename T, typename BinaryOp |
| > |
| __host__ |
| static auto call5( |
| ForwardIt&& first, Sentinel&& last |
| , OutputIt&& output |
| , T&& init |
| , BinaryOp&& op |
| , thrust::false_type |
| ) |
| THRUST_RETURNS( |
| reduce_into_fn::call( |
| thrust::detail::select_system( |
| typename iterator_system<remove_cvref_t<ForwardIt>>::type{} |
| , typename iterator_system<remove_cvref_t<OutputIt>>::type{} |
| ) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(output) |
| , THRUST_FWD(init) |
| , THRUST_FWD(op) |
| ) |
| ) |
|
|
| template < |
| typename ForwardIt, typename Sentinel, typename OutputIt |
| , typename T |
| > |
| __host__ |
| static auto call4( |
| ForwardIt&& first, Sentinel&& last |
| , OutputIt&& output |
| , T&& init |
| , thrust::false_type |
| ) |
| THRUST_RETURNS( |
| reduce_into_fn::call( |
| thrust::detail::select_system( |
| typename iterator_system<remove_cvref_t<ForwardIt>>::type{} |
| , typename iterator_system<remove_cvref_t<OutputIt>>::type{} |
| ) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(output) |
| , THRUST_FWD(init) |
| , thrust::plus<remove_cvref_t<T>>{} |
| ) |
| ) |
|
|
| template < |
| typename ForwardIt, typename Sentinel, typename OutputIt |
| > |
| __host__ |
| static auto call( |
| ForwardIt&& first, Sentinel&& last |
| , OutputIt&& output |
| ) |
| THRUST_RETURNS( |
| reduce_into_fn::call( |
| thrust::detail::select_system( |
| typename iterator_system<remove_cvref_t<ForwardIt>>::type{} |
| , typename iterator_system<remove_cvref_t<OutputIt>>::type{} |
| ) |
| , THRUST_FWD(first), THRUST_FWD(last) |
| , THRUST_FWD(output) |
| , typename iterator_traits<remove_cvref_t<ForwardIt>>::value_type{} |
| , thrust::plus< |
| remove_cvref_t< |
| typename iterator_traits<remove_cvref_t<ForwardIt>>::value_type |
| > |
| >{} |
| ) |
| ) |
|
|
| |
| |
| |
| template <typename T1, typename T2, typename T3, typename T4> |
| __host__ |
| static auto call(T1&& t1, T2&& t2, T3&& t3, T4&& t4) |
| THRUST_RETURNS( |
| reduce_into_fn::call4( |
| THRUST_FWD(t1), THRUST_FWD(t2), THRUST_FWD(t3), THRUST_FWD(t4), |
| thrust::is_execution_policy<thrust::remove_cvref_t<T1>>{}) |
| ) |
|
|
| template <typename T1, typename T2, typename T3, typename T4, typename T5> |
| __host__ |
| static auto call(T1&& t1, T2&& t2, T3&& t3, T4&& t4, T5&& t5) |
| THRUST_RETURNS( |
| reduce_into_fn::call5( |
| THRUST_FWD(t1), THRUST_FWD(t2), THRUST_FWD(t3), THRUST_FWD(t4), |
| THRUST_FWD(t5), thrust::is_execution_policy<thrust::remove_cvref_t<T1>>{}) |
| ) |
|
|
| template <typename... Args> |
| THRUST_NODISCARD __host__ |
| auto operator()(Args&&... args) const |
| THRUST_RETURNS( |
| call(THRUST_FWD(args)...) |
| ) |
| }; |
|
|
| } |
|
|
| THRUST_INLINE_CONSTANT reduce_into_detail::reduce_into_fn reduce_into{}; |
|
|
| |
| |
|
|
| } |
|
|
| THRUST_NAMESPACE_END |
|
|
| #endif |
|
|
|
|