#include #include #include #include template void TestMinMaxElementSimple() { Vector data{3, 5, 1, 2, 5, 1}; ASSERT_EQUAL(*thrust::minmax_element(data.begin(), data.end()).first, 1); ASSERT_EQUAL(*thrust::minmax_element(data.begin(), data.end()).second, 5); ASSERT_EQUAL(thrust::minmax_element(data.begin(), data.end()).first - data.begin(), 2); ASSERT_EQUAL(thrust::minmax_element(data.begin(), data.end()).second - data.begin(), 1); } DECLARE_VECTOR_UNITTEST(TestMinMaxElementSimple); template void TestMinMaxElementWithTransform() { using T = typename Vector::value_type; Vector data{3, 5, 1, 2, 5, 1}; ASSERT_EQUAL(*thrust::minmax_element(thrust::make_transform_iterator(data.begin(), ::cuda::std::negate()), thrust::make_transform_iterator(data.end(), ::cuda::std::negate())) .first, -5); ASSERT_EQUAL(*thrust::minmax_element(thrust::make_transform_iterator(data.begin(), ::cuda::std::negate()), thrust::make_transform_iterator(data.end(), ::cuda::std::negate())) .second, -1); } DECLARE_VECTOR_UNITTEST(TestMinMaxElementWithTransform); template void TestMinMaxElement(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_min; typename thrust::host_vector::iterator h_max; typename thrust::device_vector::iterator d_min; typename thrust::device_vector::iterator d_max; h_min = thrust::minmax_element(h_data.begin(), h_data.end()).first; d_min = thrust::minmax_element(d_data.begin(), d_data.end()).first; h_max = thrust::minmax_element(h_data.begin(), h_data.end()).second; d_max = thrust::minmax_element(d_data.begin(), d_data.end()).second; ASSERT_EQUAL(h_min - h_data.begin(), d_min - d_data.begin()); ASSERT_EQUAL(h_max - h_data.begin(), d_max - d_data.begin()); h_max = thrust::minmax_element(h_data.begin(), h_data.end(), ::cuda::std::greater()).first; d_max = thrust::minmax_element(d_data.begin(), d_data.end(), ::cuda::std::greater()).first; h_min = thrust::minmax_element(h_data.begin(), h_data.end(), ::cuda::std::greater()).second; d_min = thrust::minmax_element(d_data.begin(), d_data.end(), ::cuda::std::greater()).second; ASSERT_EQUAL(h_min - h_data.begin(), d_min - d_data.begin()); ASSERT_EQUAL(h_max - h_data.begin(), d_max - d_data.begin()); } DECLARE_VARIABLE_UNITTEST(TestMinMaxElement); template cuda::std::pair minmax_element(my_system& system, ForwardIterator first, ForwardIterator) { system.validate_dispatch(); return cuda::std::make_pair(first, first); } void TestMinMaxElementDispatchExplicit() { thrust::device_vector vec(1); my_system sys(0); thrust::minmax_element(sys, vec.begin(), vec.end()); ASSERT_EQUAL(true, sys.is_valid()); } DECLARE_UNITTEST(TestMinMaxElementDispatchExplicit); template cuda::std::pair minmax_element(my_tag, ForwardIterator first, ForwardIterator) { *first = 13; return cuda::std::make_pair(first, first); } void TestMinMaxElementDispatchImplicit() { thrust::device_vector vec(1); thrust::minmax_element(thrust::retag(vec.begin()), thrust::retag(vec.end())); ASSERT_EQUAL(13, vec.front()); } DECLARE_UNITTEST(TestMinMaxElementDispatchImplicit); void TestMinMaxElementWithBigIndexesHelper(int magnitude) { using Iter = thrust::counting_iterator; Iter begin(1); Iter end = begin + (1ll << magnitude); ASSERT_EQUAL(::cuda::std::distance(begin, end), 1ll << magnitude); cuda::std::pair result = thrust::minmax_element(thrust::device, begin, end); ASSERT_EQUAL(*result.first, 1); ASSERT_EQUAL(*result.second, (1ll << magnitude)); result = thrust::minmax_element(thrust::device, begin, end, ::cuda::std::greater()); ASSERT_EQUAL(*result.second, 1); ASSERT_EQUAL(*result.first, (1ll << magnitude)); } void TestMinMaxElementWithBigIndexes() { TestMinMaxElementWithBigIndexesHelper(30); #ifndef THRUST_FORCE_32_BIT_OFFSET_TYPE TestMinMaxElementWithBigIndexesHelper(31); TestMinMaxElementWithBigIndexesHelper(32); TestMinMaxElementWithBigIndexesHelper(33); #endif } DECLARE_UNITTEST(TestMinMaxElementWithBigIndexes); void TestMinElementCudaIterator() { auto result = thrust::minmax_element(thrust::device, cuda::counting_iterator{0}, cuda::counting_iterator{0} + 100); ASSERT_EQUAL(*result.first, 0); ASSERT_EQUAL(*result.second, 99); } DECLARE_UNITTEST(TestMinElementCudaIterator);