| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #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/extrema.h> |
| #include <thrust/iterator/iterator_traits.h> |
| #include <thrust/system/detail/generic/select_system.h> |
| #include <thrust/system/detail/generic/extrema.h> |
| #include <thrust/system/detail/adl/extrema.h> |
|
|
| THRUST_NAMESPACE_BEGIN |
| |
| __thrust_exec_check_disable__ |
| template<typename DerivedPolicy, typename ForwardIterator> |
| __host__ __device__ |
| ForwardIterator min_element(const thrust::detail::execution_policy_base<DerivedPolicy> &exec, ForwardIterator first, ForwardIterator last) |
| { |
| using thrust::system::detail::generic::min_element; |
| return min_element(thrust::detail::derived_cast(thrust::detail::strip_const(exec)), first, last); |
| } |
|
|
|
|
| __thrust_exec_check_disable__ |
| template<typename DerivedPolicy, typename ForwardIterator, typename BinaryPredicate> |
| __host__ __device__ |
| ForwardIterator min_element(const thrust::detail::execution_policy_base<DerivedPolicy> &exec, ForwardIterator first, ForwardIterator last, BinaryPredicate comp) |
| { |
| using thrust::system::detail::generic::min_element; |
| return min_element(thrust::detail::derived_cast(thrust::detail::strip_const(exec)), first, last, comp); |
| } |
|
|
|
|
| __thrust_exec_check_disable__ |
| template<typename DerivedPolicy, typename ForwardIterator> |
| __host__ __device__ |
| ForwardIterator max_element(const thrust::detail::execution_policy_base<DerivedPolicy> &exec, ForwardIterator first, ForwardIterator last) |
| { |
| using thrust::system::detail::generic::max_element; |
| return max_element(thrust::detail::derived_cast(thrust::detail::strip_const(exec)), first, last); |
| } |
|
|
|
|
| __thrust_exec_check_disable__ |
| template<typename DerivedPolicy, typename ForwardIterator, typename BinaryPredicate> |
| __host__ __device__ |
| ForwardIterator max_element(const thrust::detail::execution_policy_base<DerivedPolicy> &exec, ForwardIterator first, ForwardIterator last, BinaryPredicate comp) |
| { |
| using thrust::system::detail::generic::max_element; |
| return max_element(thrust::detail::derived_cast(thrust::detail::strip_const(exec)), first, last, comp); |
| } |
|
|
|
|
| __thrust_exec_check_disable__ |
| template<typename DerivedPolicy, typename ForwardIterator> |
| __host__ __device__ |
| thrust::pair<ForwardIterator,ForwardIterator> minmax_element(const thrust::detail::execution_policy_base<DerivedPolicy> &exec, ForwardIterator first, ForwardIterator last) |
| { |
| using thrust::system::detail::generic::minmax_element; |
| return minmax_element(thrust::detail::derived_cast(thrust::detail::strip_const(exec)), first, last); |
| } |
|
|
|
|
| __thrust_exec_check_disable__ |
| template<typename DerivedPolicy, typename ForwardIterator, typename BinaryPredicate> |
| __host__ __device__ |
| thrust::pair<ForwardIterator,ForwardIterator> minmax_element(const thrust::detail::execution_policy_base<DerivedPolicy> &exec, ForwardIterator first, ForwardIterator last, BinaryPredicate comp) |
| { |
| using thrust::system::detail::generic::minmax_element; |
| return minmax_element(thrust::detail::derived_cast(thrust::detail::strip_const(exec)), first, last, comp); |
| } |
|
|
|
|
| template <typename ForwardIterator> |
| ForwardIterator min_element(ForwardIterator first, ForwardIterator last) |
| { |
| using thrust::system::detail::generic::select_system; |
|
|
| typedef typename thrust::iterator_system<ForwardIterator>::type System; |
|
|
| System system; |
|
|
| return thrust::min_element(select_system(system), first, last); |
| } |
|
|
|
|
| template <typename ForwardIterator, typename BinaryPredicate> |
| ForwardIterator min_element(ForwardIterator first, ForwardIterator last, |
| BinaryPredicate comp) |
| { |
| using thrust::system::detail::generic::select_system; |
|
|
| typedef typename thrust::iterator_system<ForwardIterator>::type System; |
|
|
| System system; |
|
|
| return thrust::min_element(select_system(system), first, last, comp); |
| } |
|
|
|
|
| template <typename ForwardIterator> |
| ForwardIterator max_element(ForwardIterator first, ForwardIterator last) |
| { |
| using thrust::system::detail::generic::select_system; |
|
|
| typedef typename thrust::iterator_system<ForwardIterator>::type System; |
|
|
| System system; |
|
|
| return thrust::max_element(select_system(system), first, last); |
| } |
|
|
|
|
| template <typename ForwardIterator, typename BinaryPredicate> |
| ForwardIterator max_element(ForwardIterator first, ForwardIterator last, |
| BinaryPredicate comp) |
| { |
| using thrust::system::detail::generic::select_system; |
|
|
| typedef typename thrust::iterator_system<ForwardIterator>::type System; |
|
|
| System system; |
|
|
| return thrust::max_element(select_system(system), first, last, comp); |
| } |
|
|
|
|
| template <typename ForwardIterator> |
| thrust::pair<ForwardIterator,ForwardIterator> |
| minmax_element(ForwardIterator first, ForwardIterator last) |
| { |
| using thrust::system::detail::generic::select_system; |
|
|
| typedef typename thrust::iterator_system<ForwardIterator>::type System; |
|
|
| System system; |
|
|
| return thrust::minmax_element(select_system(system), first, last); |
| } |
|
|
|
|
| template <typename ForwardIterator, typename BinaryPredicate> |
| thrust::pair<ForwardIterator,ForwardIterator> |
| minmax_element(ForwardIterator first, ForwardIterator last, BinaryPredicate comp) |
| { |
| using thrust::system::detail::generic::select_system; |
|
|
| typedef typename thrust::iterator_system<ForwardIterator>::type System; |
|
|
| System system; |
|
|
| return thrust::minmax_element(select_system(system), first, last, comp); |
| } |
|
|
| THRUST_NAMESPACE_END |
|
|