#include #include #include #include #include #include template void TestMaxElementSimple() { using T = typename Vector::value_type; Vector data{3, 5, 1, 2, 5, 1}; ASSERT_EQUAL(*thrust::max_element(data.begin(), data.end()), 5); ASSERT_EQUAL(thrust::max_element(data.begin(), data.end()) - data.begin(), 1); ASSERT_EQUAL(*thrust::max_element(data.begin(), data.end(), ::cuda::std::greater()), 1); ASSERT_EQUAL(thrust::max_element(data.begin(), data.end(), ::cuda::std::greater()) - data.begin(), 2); } DECLARE_VECTOR_UNITTEST(TestMaxElementSimple); template void TestMaxElementWithTransform() { using T = typename Vector::value_type; Vector data{3, 5, 1, 2, 5, 1}; ASSERT_EQUAL(*thrust::max_element(thrust::make_transform_iterator(data.begin(), ::cuda::std::negate()), thrust::make_transform_iterator(data.end(), ::cuda::std::negate())), -1); ASSERT_EQUAL(*thrust::max_element(thrust::make_transform_iterator(data.begin(), ::cuda::std::negate()), thrust::make_transform_iterator(data.end(), ::cuda::std::negate()), ::cuda::std::greater()), -5); } DECLARE_VECTOR_UNITTEST(TestMaxElementWithTransform); template void TestMaxElement(const size_t n) { thrust::host_vector h_data = unittest::random_samples(n); thrust::device_vector d_data = h_data; typename thrust::host_vector::iterator h_max = thrust::max_element(h_data.begin(), h_data.end()); typename thrust::device_vector::iterator d_max = thrust::max_element(d_data.begin(), d_data.end()); ASSERT_EQUAL(h_max - h_data.begin(), d_max - d_data.begin()); typename thrust::host_vector::iterator h_min = thrust::max_element(h_data.begin(), h_data.end(), ::cuda::std::greater()); typename thrust::device_vector::iterator d_min = thrust::max_element(d_data.begin(), d_data.end(), ::cuda::std::greater()); ASSERT_EQUAL(h_min - h_data.begin(), d_min - d_data.begin()); } DECLARE_VARIABLE_UNITTEST(TestMaxElement); template ForwardIterator max_element(my_system& system, ForwardIterator first, ForwardIterator) { system.validate_dispatch(); return first; } void TestMaxElementDispatchExplicit() { thrust::device_vector vec(1); my_system sys(0); thrust::max_element(sys, vec.begin(), vec.end()); ASSERT_EQUAL(true, sys.is_valid()); } DECLARE_UNITTEST(TestMaxElementDispatchExplicit); template ForwardIterator max_element(my_tag, ForwardIterator first, ForwardIterator) { *first = 13; return first; } void TestMaxElementDispatchImplicit() { thrust::device_vector vec(1); thrust::max_element(thrust::retag(vec.begin()), thrust::retag(vec.end())); ASSERT_EQUAL(13, vec.front()); } DECLARE_UNITTEST(TestMaxElementDispatchImplicit); void TestMaxElementWithBigIndexesHelper(int magnitude) { thrust::counting_iterator begin(1); thrust::counting_iterator end = begin + (1ll << magnitude); ASSERT_EQUAL(::cuda::std::distance(begin, end), 1ll << magnitude); ASSERT_EQUAL(*thrust::max_element(thrust::device, begin, end), (1ll << magnitude)); } void TestMaxElementWithBigIndexes() { TestMaxElementWithBigIndexesHelper(30); #ifndef THRUST_FORCE_32_BIT_OFFSET_TYPE TestMaxElementWithBigIndexesHelper(31); TestMaxElementWithBigIndexesHelper(32); TestMaxElementWithBigIndexesHelper(33); #endif } DECLARE_UNITTEST(TestMaxElementWithBigIndexes); void TestMaxElementCudaIterator() { auto pos = thrust::max_element(thrust::device, cuda::counting_iterator{0}, cuda::counting_iterator{0} + 100); ASSERT_EQUAL(*pos, 99); } DECLARE_UNITTEST(TestMaxElementCudaIterator);