#include #include #include #include #include #include template OutputIterator set_difference(my_system &system, InputIterator1, InputIterator1, InputIterator2, InputIterator2, OutputIterator result) { system.validate_dispatch(); return result; } void TestSetDifferenceDispatchExplicit() { thrust::device_vector vec(1); my_system sys(0); thrust::set_difference(sys, vec.begin(), vec.begin(), vec.begin(), vec.begin(), vec.begin()); ASSERT_EQUAL(true, sys.is_valid()); } DECLARE_UNITTEST(TestSetDifferenceDispatchExplicit); template OutputIterator set_difference(my_tag, InputIterator1, InputIterator1, InputIterator2, InputIterator2, OutputIterator result) { *result = 13; return result; } void TestSetDifferenceDispatchImplicit() { thrust::device_vector vec(1); thrust::set_difference(thrust::retag(vec.begin()), thrust::retag(vec.begin()), thrust::retag(vec.begin()), thrust::retag(vec.begin()), thrust::retag(vec.begin())); ASSERT_EQUAL(13, vec.front()); } DECLARE_UNITTEST(TestSetDifferenceDispatchImplicit); template void TestSetDifferenceSimple(void) { typedef typename Vector::iterator Iterator; Vector a(4), b(5); a[0] = 0; a[1] = 2; a[2] = 4; a[3] = 5; b[0] = 0; b[1] = 3; b[2] = 3; b[3] = 4; b[4] = 6; Vector ref(2); ref[0] = 2; ref[1] = 5; Vector result(2); Iterator end = thrust::set_difference(a.begin(), a.end(), b.begin(), b.end(), result.begin()); ASSERT_EQUAL_QUIET(result.end(), end); ASSERT_EQUAL(ref, result); } DECLARE_VECTOR_UNITTEST(TestSetDifferenceSimple); template void TestSetDifference(const size_t n) { size_t sizes[] = {0, 1, n / 2, n, n + 1, 2 * n}; size_t num_sizes = sizeof(sizes) / sizeof(size_t); thrust::host_vector random = unittest::random_integers(n + *thrust::max_element(sizes, sizes + num_sizes)); thrust::host_vector h_a(random.begin(), random.begin() + n); thrust::host_vector h_b(random.begin() + n, random.end()); thrust::stable_sort(h_a.begin(), h_a.end()); thrust::stable_sort(h_b.begin(), h_b.end()); thrust::device_vector d_a = h_a; thrust::device_vector d_b = h_b; for (size_t i = 0; i < num_sizes; i++) { size_t size = sizes[i]; thrust::host_vector h_result(n + size); thrust::device_vector d_result(n + size); typename thrust::host_vector::iterator h_end; typename thrust::device_vector::iterator d_end; h_end = thrust::set_difference(h_a.begin(), h_a.end(), h_b.begin(), h_b.begin() + size, h_result.begin()); h_result.resize(h_end - h_result.begin()); d_end = thrust::set_difference(d_a.begin(), d_a.end(), d_b.begin(), d_b.begin() + size, d_result.begin()); d_result.resize(d_end - d_result.begin()); ASSERT_EQUAL(h_result, d_result); } } DECLARE_VARIABLE_UNITTEST(TestSetDifference); template void TestSetDifferenceEquivalentRanges(const size_t n) { thrust::host_vector temp = unittest::random_integers(n); thrust::host_vector h_a = temp; thrust::sort(h_a.begin(), h_a.end()); thrust::host_vector h_b = h_a; thrust::device_vector d_a = h_a; thrust::device_vector d_b = h_b; thrust::host_vector h_result(n); thrust::device_vector d_result(n); typename thrust::host_vector::iterator h_end; typename thrust::device_vector::iterator d_end; h_end = thrust::set_difference(h_a.begin(), h_a.end(), h_b.begin(), h_b.end(), h_result.begin()); h_result.resize(h_end - h_result.begin()); d_end = thrust::set_difference(d_a.begin(), d_a.end(), d_b.begin(), d_b.end(), d_result.begin()); d_result.resize(d_end - d_result.begin()); ASSERT_EQUAL(h_result, d_result); } DECLARE_VARIABLE_UNITTEST(TestSetDifferenceEquivalentRanges); template void TestSetDifferenceMultiset(const size_t n) { thrust::host_vector vec = unittest::random_integers(2 * n); // restrict elements to [min,13) for(typename thrust::host_vector::iterator i = vec.begin(); i != vec.end(); ++i) { int temp = static_cast(*i); temp %= 13; *i = temp; } thrust::host_vector h_a(vec.begin(), vec.begin() + n); thrust::host_vector h_b(vec.begin() + n, vec.end()); thrust::sort(h_a.begin(), h_a.end()); thrust::sort(h_b.begin(), h_b.end()); thrust::device_vector d_a = h_a; thrust::device_vector d_b = h_b; thrust::host_vector h_result(n); thrust::device_vector d_result(n); typename thrust::host_vector::iterator h_end; typename thrust::device_vector::iterator d_end; h_end = thrust::set_difference(h_a.begin(), h_a.end(), h_b.begin(), h_b.end(), h_result.begin()); h_result.resize(h_end - h_result.begin()); d_end = thrust::set_difference(d_a.begin(), d_a.end(), d_b.begin(), d_b.end(), d_result.begin()); d_result.resize(d_end - d_result.begin()); ASSERT_EQUAL(h_result, d_result); } DECLARE_VARIABLE_UNITTEST(TestSetDifferenceMultiset); // FIXME: disabled on Windows, because it causes a failure on the internal CI system in one specific configuration. // That failure will be tracked in a new NVBug, this is disabled to unblock submitting all the other changes. #if THRUST_HOST_COMPILER != THRUST_HOST_COMPILER_MSVC void TestSetDifferenceWithBigIndexesHelper(int magnitude) { thrust::counting_iterator begin(0); thrust::counting_iterator end = begin + (1ll << magnitude); thrust::counting_iterator end_longer = end + 1; ASSERT_EQUAL(thrust::distance(begin, end), 1ll << magnitude); thrust::device_vector result; result.resize(1); thrust::set_difference(thrust::device, begin, end_longer, begin, end, result.begin()); thrust::host_vector expected; expected.push_back(*end); ASSERT_EQUAL(result, expected); } void TestSetDifferenceWithBigIndexes() { TestSetDifferenceWithBigIndexesHelper(30); TestSetDifferenceWithBigIndexesHelper(31); TestSetDifferenceWithBigIndexesHelper(32); TestSetDifferenceWithBigIndexesHelper(33); } DECLARE_UNITTEST(TestSetDifferenceWithBigIndexes); #endif