| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #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/remove.h> |
| #include <thrust/iterator/iterator_traits.h> |
| #include <thrust/detail/copy_if.h> |
| #include <thrust/detail/internal_functional.h> |
| #include <thrust/detail/temporary_array.h> |
| #include <thrust/remove.h> |
|
|
| THRUST_NAMESPACE_BEGIN |
| namespace system |
| { |
| namespace detail |
| { |
| namespace generic |
| { |
|
|
|
|
| template<typename DerivedPolicy, |
| typename ForwardIterator, |
| typename T> |
| __host__ __device__ |
| ForwardIterator remove(thrust::execution_policy<DerivedPolicy> &exec, |
| ForwardIterator first, |
| ForwardIterator last, |
| const T &value) |
| { |
| thrust::detail::equal_to_value<T> pred(value); |
|
|
| |
| return thrust::remove_if(exec, first, last, pred); |
| } |
|
|
|
|
| template<typename DerivedPolicy, |
| typename InputIterator, |
| typename OutputIterator, |
| typename T> |
| __host__ __device__ |
| OutputIterator remove_copy(thrust::execution_policy<DerivedPolicy> &exec, |
| InputIterator first, |
| InputIterator last, |
| OutputIterator result, |
| const T &value) |
| { |
| thrust::detail::equal_to_value<T> pred(value); |
|
|
| |
| return thrust::remove_copy_if(exec, first, last, result, pred); |
| } |
|
|
|
|
| template<typename DerivedPolicy, |
| typename ForwardIterator, |
| typename Predicate> |
| __host__ __device__ |
| ForwardIterator remove_if(thrust::execution_policy<DerivedPolicy> &exec, |
| ForwardIterator first, |
| ForwardIterator last, |
| Predicate pred) |
| { |
| typedef typename thrust::iterator_traits<ForwardIterator>::value_type InputType; |
|
|
| |
| thrust::detail::temporary_array<InputType,DerivedPolicy> temp(exec, first, last); |
|
|
| |
| return thrust::remove_copy_if(exec, temp.begin(), temp.end(), temp.begin(), first, pred); |
| } |
|
|
|
|
| template<typename DerivedPolicy, |
| typename ForwardIterator, |
| typename InputIterator, |
| typename Predicate> |
| __host__ __device__ |
| ForwardIterator remove_if(thrust::execution_policy<DerivedPolicy> &exec, |
| ForwardIterator first, |
| ForwardIterator last, |
| InputIterator stencil, |
| Predicate pred) |
| { |
| typedef typename thrust::iterator_traits<ForwardIterator>::value_type InputType; |
|
|
| |
| thrust::detail::temporary_array<InputType,DerivedPolicy> temp(exec, first, last); |
|
|
| |
| return thrust::remove_copy_if(exec, temp.begin(), temp.end(), stencil, first, pred); |
| } |
|
|
|
|
| template<typename DerivedPolicy, |
| typename InputIterator, |
| typename OutputIterator, |
| typename Predicate> |
| __host__ __device__ |
| OutputIterator remove_copy_if(thrust::execution_policy<DerivedPolicy> &exec, |
| InputIterator first, |
| InputIterator last, |
| OutputIterator result, |
| Predicate pred) |
| { |
| return thrust::remove_copy_if(exec, first, last, first, result, pred); |
| } |
|
|
|
|
| template<typename DerivedPolicy, |
| typename InputIterator1, |
| typename InputIterator2, |
| typename OutputIterator, |
| typename Predicate> |
| __host__ __device__ |
| OutputIterator remove_copy_if(thrust::execution_policy<DerivedPolicy> &exec, |
| InputIterator1 first, |
| InputIterator1 last, |
| InputIterator2 stencil, |
| OutputIterator result, |
| Predicate pred) |
| { |
| return thrust::copy_if(exec, first, last, stencil, result, thrust::detail::not1(pred)); |
| } |
|
|
|
|
| } |
| } |
| } |
| THRUST_NAMESPACE_END |
|
|
|
|