#include #include #include #include template struct is_even { __host__ __device__ bool operator()(T x) const { return ((int) x % 2) == 0; } }; template void TestPartitionPointSimple(void) { typedef typename Vector::value_type T; typedef typename Vector::iterator Iterator; Vector v(4); v[0] = 1; v[1] = 1; v[2] = 1; v[3] = 0; Iterator first = v.begin(); Iterator last = v.begin() + 4; Iterator ref = first + 3; ASSERT_EQUAL_QUIET(ref, thrust::partition_point(first, last, thrust::identity())); last = v.begin() + 3; ref = last; ASSERT_EQUAL_QUIET(ref, thrust::partition_point(first, last, thrust::identity())); } DECLARE_VECTOR_UNITTEST(TestPartitionPointSimple); template void TestPartitionPoint(void) { typedef typename Vector::value_type T; typedef typename Vector::iterator Iterator; const size_t n = (1 << 16) + 13; Vector v = unittest::random_integers(n); Iterator ref = thrust::stable_partition(v.begin(), v.end(), is_even()); ASSERT_EQUAL(ref - v.begin(), thrust::partition_point(v.begin(), v.end(), is_even()) - v.begin()); } DECLARE_INTEGRAL_VECTOR_UNITTEST(TestPartitionPoint); template ForwardIterator partition_point(my_system &system, ForwardIterator first, ForwardIterator, Predicate) { system.validate_dispatch(); return first; } void TestPartitionPointDispatchExplicit() { thrust::device_vector vec(1); my_system sys(0); thrust::partition_point(sys, vec.begin(), vec.begin(), 0); ASSERT_EQUAL(true, sys.is_valid()); } DECLARE_UNITTEST(TestPartitionPointDispatchExplicit); template ForwardIterator partition_point(my_tag, ForwardIterator first, ForwardIterator, Predicate) { *first = 13; return first; } void TestPartitionPointDispatchImplicit() { thrust::device_vector vec(1); thrust::partition_point(thrust::retag(vec.begin()), thrust::retag(vec.begin()), 0); ASSERT_EQUAL(13, vec.front()); } DECLARE_UNITTEST(TestPartitionPointDispatchImplicit); struct test_less_than { long long expected; __device__ bool operator()(long long y) { return y < expected; } }; void TestPartitionPointWithBigIndexesHelper(int magnitude) { thrust::counting_iterator begin(0); thrust::counting_iterator end = begin + (1ll << magnitude); ASSERT_EQUAL(thrust::distance(begin, end), 1ll << magnitude); test_less_than fn = { (1ll << magnitude) - 17 }; ASSERT_EQUAL(thrust::distance( begin, thrust::partition_point( thrust::device, begin, end, fn)), (1ll << magnitude) - 17); } void TestPartitionPointWithBigIndexes() { TestPartitionPointWithBigIndexesHelper(30); TestPartitionPointWithBigIndexesHelper(31); TestPartitionPointWithBigIndexesHelper(32); TestPartitionPointWithBigIndexesHelper(33); } DECLARE_UNITTEST(TestPartitionPointWithBigIndexes);