#include #include #include #include template void TestSetIntersectionDescendingSimple() { using T = typename Vector::value_type; using Iterator = typename Vector::iterator; Vector a{4, 2, 0}, b{4, 3, 3, 0}; Vector ref{4, 0}; Vector result(2); Iterator end = thrust::set_intersection(a.begin(), a.end(), b.begin(), b.end(), result.begin(), ::cuda::std::greater()); ASSERT_EQUAL_QUIET(result.end(), end); ASSERT_EQUAL(ref, result); } DECLARE_VECTOR_UNITTEST(TestSetIntersectionDescendingSimple); template void TestSetIntersectionDescending(const size_t n) { thrust::host_vector temp = unittest::random_integers(2 * n); thrust::host_vector h_a(temp.begin(), temp.begin() + n); thrust::host_vector h_b(temp.begin() + n, temp.end()); thrust::sort(h_a.begin(), h_a.end(), ::cuda::std::greater()); thrust::sort(h_b.begin(), h_b.end(), ::cuda::std::greater()); 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_intersection( h_a.begin(), h_a.end(), h_b.begin(), h_b.end(), h_result.begin(), ::cuda::std::greater()); h_result.resize(h_end - h_result.begin()); d_end = thrust::set_intersection( d_a.begin(), d_a.end(), d_b.begin(), d_b.end(), d_result.begin(), ::cuda::std::greater()); d_result.resize(d_end - d_result.begin()); ASSERT_EQUAL(h_result, d_result); } DECLARE_VARIABLE_UNITTEST(TestSetIntersectionDescending);