thrust::is_partitioned
Defined in thrust/partition.h
-
template<typename DerivedPolicy, typename InputIterator, typename Predicate>
bool thrust::is_partitioned(const thrust::detail::execution_policy_base<DerivedPolicy> &exec, InputIterator first, InputIterator last, Predicate pred) is_partitionedreturnstrueif the given range is partitioned with respect to a predicate, andfalseotherwise.Specifically,
is_partitionedreturnstrueif[first, last)is empty of if[first, last)is partitioned bypred, i.e. if all elements that satisfypredappear before those that do not.The algorithm’s execution is parallelized as determined by
exec.#include <thrust/partition.h> #include <thrust/execution_policy.h> struct is_even { __host__ __device__ bool operator()(const int &x) { return (x % 2) == 0; } }; ... int A[] = {2, 4, 6, 8, 10, 1, 3, 5, 7, 9}; int B[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; thrust::is_partitioned(thrust::host, A, A + 10, is_even()); // returns true thrust::is_partitioned(thrust::host, B, B + 10, is_even()); // returns false
See also
partition- Parameters
exec – The execution policy to use for parallelization.
first – The beginning of the range to consider.
last – The end of the range to consider.
pred – A function object which decides to which partition each element of the range
[first, last)belongs.
- Template Parameters
DerivedPolicy – The name of the derived execution policy.
InputIterator – is a model of Input Iterator, and
InputIterator'svalue_typeis convertible toPredicate'sargument type.Predicate – is a model of Predicate.
- Returns
trueif the range[first, last)is partitioned with respect topred, or if[first, last)is empty.false, otherwise.