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