| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
|
|
| #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/system/detail/generic/tag.h> |
|
|
| THRUST_NAMESPACE_BEGIN |
| namespace system |
| { |
| namespace detail |
| { |
| namespace generic |
| { |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename ForwardIterator, |
| typename Predicate> |
| __host__ __device__ |
| ForwardIterator stable_partition(thrust::execution_policy<ExecutionPolicy> &exec, |
| ForwardIterator first, |
| ForwardIterator last, |
| Predicate pred); |
|
|
| template<typename ExecutionPolicy, |
| typename ForwardIterator, |
| typename InputIterator, |
| typename Predicate> |
| __host__ __device__ |
| ForwardIterator stable_partition(thrust::execution_policy<ExecutionPolicy> &exec, |
| ForwardIterator first, |
| ForwardIterator last, |
| InputIterator stencil, |
| Predicate pred); |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename InputIterator, |
| typename OutputIterator1, |
| typename OutputIterator2, |
| typename Predicate> |
| __host__ __device__ |
| thrust::pair<OutputIterator1,OutputIterator2> |
| stable_partition_copy(thrust::execution_policy<ExecutionPolicy> &exec, |
| InputIterator first, |
| InputIterator last, |
| OutputIterator1 out_true, |
| OutputIterator2 out_false, |
| Predicate pred); |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename InputIterator1, |
| typename InputIterator2, |
| typename OutputIterator1, |
| typename OutputIterator2, |
| typename Predicate> |
| __host__ __device__ |
| thrust::pair<OutputIterator1,OutputIterator2> |
| stable_partition_copy(thrust::execution_policy<ExecutionPolicy> &exec, |
| InputIterator1 first, |
| InputIterator1 last, |
| InputIterator2 stencil, |
| OutputIterator1 out_true, |
| OutputIterator2 out_false, |
| Predicate pred); |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename ForwardIterator, |
| typename Predicate> |
| __host__ __device__ |
| ForwardIterator partition(thrust::execution_policy<ExecutionPolicy> &exec, |
| ForwardIterator first, |
| ForwardIterator last, |
| Predicate pred); |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename ForwardIterator, |
| typename InputIterator, |
| typename Predicate> |
| __host__ __device__ |
| ForwardIterator partition(thrust::execution_policy<ExecutionPolicy> &exec, |
| ForwardIterator first, |
| ForwardIterator last, |
| InputIterator stencil, |
| Predicate pred); |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename InputIterator, |
| typename OutputIterator1, |
| typename OutputIterator2, |
| typename Predicate> |
| __host__ __device__ |
| thrust::pair<OutputIterator1,OutputIterator2> |
| partition_copy(thrust::execution_policy<ExecutionPolicy> &exec, |
| InputIterator first, |
| InputIterator last, |
| OutputIterator1 out_true, |
| OutputIterator2 out_false, |
| Predicate pred); |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename InputIterator1, |
| typename InputIterator2, |
| typename OutputIterator1, |
| typename OutputIterator2, |
| typename Predicate> |
| __host__ __device__ |
| thrust::pair<OutputIterator1,OutputIterator2> |
| partition_copy(thrust::execution_policy<ExecutionPolicy> &exec, |
| InputIterator1 first, |
| InputIterator1 last, |
| InputIterator2 stencil, |
| OutputIterator1 out_true, |
| OutputIterator2 out_false, |
| Predicate pred); |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename ForwardIterator, |
| typename Predicate> |
| __host__ __device__ |
| ForwardIterator partition_point(thrust::execution_policy<ExecutionPolicy> &exec, |
| ForwardIterator first, |
| ForwardIterator last, |
| Predicate pred); |
|
|
|
|
| template<typename ExecutionPolicy, |
| typename InputIterator, |
| typename Predicate> |
| __host__ __device__ |
| bool is_partitioned(thrust::execution_policy<ExecutionPolicy> &exec, |
| InputIterator first, |
| InputIterator last, |
| Predicate pred); |
|
|
|
|
| } |
| } |
| } |
| THRUST_NAMESPACE_END |
|
|
| #include <thrust/system/detail/generic/partition.inl> |
|
|
|
|