#include #include #include #include #include #include #include template void TestExclusiveScanByKeySimple() { using T = typename Vector::value_type; using Iterator = typename Vector::iterator; Vector keys{0, 1, 1, 1, 2, 3, 3}; Vector vals{1, 2, 3, 4, 5, 6, 7}; Vector output(7, 0); Iterator iter = thrust::exclusive_scan_by_key(keys.begin(), keys.end(), vals.begin(), output.begin()); ASSERT_EQUAL_QUIET(iter, output.end()); Vector ref{0, 0, 2, 5, 0, 0, 6}; ASSERT_EQUAL(output, ref); thrust::exclusive_scan_by_key(keys.begin(), keys.end(), vals.begin(), output.begin(), T(10)); ref = {10, 10, 12, 15, 10, 10, 16}; ASSERT_EQUAL(output, ref); thrust::exclusive_scan_by_key( keys.begin(), keys.end(), vals.begin(), output.begin(), T(10), ::cuda::std::equal_to(), ::cuda::std::multiplies()); ref = {10, 10, 20, 60, 10, 10, 60}; ASSERT_EQUAL(output, ref); thrust::exclusive_scan_by_key( keys.begin(), keys.end(), vals.begin(), output.begin(), T(10), ::cuda::std::equal_to()); ref = {10, 10, 12, 15, 10, 10, 16}; ASSERT_EQUAL(output, ref); } DECLARE_VECTOR_UNITTEST(TestExclusiveScanByKeySimple); template OutputIterator exclusive_scan_by_key(my_system& system, InputIterator1, InputIterator1, InputIterator2, OutputIterator result) { system.validate_dispatch(); return result; } void TestExclusiveScanByKeyDispatchExplicit() { thrust::device_vector vec(1); my_system sys(0); thrust::exclusive_scan_by_key(sys, vec.begin(), vec.begin(), vec.begin(), vec.begin()); ASSERT_EQUAL(true, sys.is_valid()); } DECLARE_UNITTEST(TestExclusiveScanByKeyDispatchExplicit); template OutputIterator exclusive_scan_by_key(my_tag, InputIterator1, InputIterator1, InputIterator2, OutputIterator result) { *result = 13; return result; } void TestExclusiveScanByKeyDispatchImplicit() { thrust::device_vector vec(1); thrust::exclusive_scan_by_key( thrust::retag(vec.begin()), thrust::retag(vec.begin()), thrust::retag(vec.begin()), thrust::retag(vec.begin())); ASSERT_EQUAL(13, vec.front()); } DECLARE_UNITTEST(TestExclusiveScanByKeyDispatchImplicit); struct head_flag_predicate { template _CCCL_HOST_DEVICE bool operator()(const T&, const T& b) { return b ? false : true; } }; template void TestScanByKeyHeadFlags() { using T = typename Vector::value_type; Vector keys{0, 1, 0, 0, 1, 1, 0}; Vector vals{1, 2, 3, 4, 5, 6, 7}; Vector output(7, 0); thrust::exclusive_scan_by_key( keys.begin(), keys.end(), vals.begin(), output.begin(), T(10), head_flag_predicate(), ::cuda::std::plus()); Vector ref{10, 10, 12, 15, 10, 10, 16}; ASSERT_EQUAL(output, ref); } DECLARE_VECTOR_UNITTEST(TestScanByKeyHeadFlags); template void TestScanByKeyReusedKeys() { Vector keys{0, 1, 1, 1, 0, 1, 1}; Vector vals{1, 2, 3, 4, 5, 6, 7}; Vector output(7, 0); thrust::exclusive_scan_by_key(keys.begin(), keys.end(), vals.begin(), output.begin(), typename Vector::value_type(10)); Vector ref{10, 10, 12, 15, 10, 10, 16}; ASSERT_EQUAL(output, ref); } DECLARE_VECTOR_UNITTEST(TestScanByKeyReusedKeys); template void TestExclusiveScanByKey(const size_t n) { thrust::host_vector h_keys(n); thrust::default_random_engine rng; for (size_t i = 0, k = 0; i < n; i++) { h_keys[i] = static_cast(k); if (rng() % 10 == 0) { k++; } } thrust::device_vector d_keys = h_keys; thrust::host_vector h_vals = unittest::random_integers(n); for (size_t i = 0; i < n; i++) { h_vals[i] = static_cast(i % 10); } thrust::device_vector d_vals = h_vals; thrust::host_vector h_output(n); thrust::device_vector d_output(n); // without init thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_vals.begin(), h_output.begin()); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_vals.begin(), d_output.begin()); ASSERT_EQUAL(d_output, h_output); // with init thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_vals.begin(), h_output.begin(), (T) 11); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_vals.begin(), d_output.begin(), (T) 11); ASSERT_EQUAL(d_output, h_output); } DECLARE_VARIABLE_UNITTEST(TestExclusiveScanByKey); template void TestExclusiveScanByKeyInPlace(const size_t n) { thrust::host_vector h_keys(n); thrust::default_random_engine rng; for (size_t i = 0, k = 0; i < n; i++) { h_keys[i] = static_cast(k); if (rng() % 10 == 0) { k++; } } thrust::device_vector d_keys = h_keys; thrust::host_vector h_vals = unittest::random_integers(n); for (size_t i = 0; i < n; i++) { h_vals[i] = static_cast(i % 10); } thrust::device_vector d_vals = h_vals; // in-place scans: in/out values aliasing thrust::host_vector h_output = h_vals; thrust::device_vector d_output = d_vals; thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_output.begin(), h_output.begin(), (T) 11); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_output.begin(), d_output.begin(), (T) 11); ASSERT_EQUAL(d_output, h_output); // in-place scans: in/out keys aliasing thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_vals.begin(), h_keys.begin(), (T) 11); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_vals.begin(), d_keys.begin(), (T) 11); ASSERT_EQUAL(d_keys, h_keys); } DECLARE_VARIABLE_UNITTEST(TestExclusiveScanByKeyInPlace); void TestScanByKeyMixedTypes() { const unsigned int n = 113; thrust::host_vector h_keys(n); thrust::default_random_engine rng; for (size_t i = 0, k = 0; i < n; i++) { h_keys[i] = static_cast(k); if (rng() % 10 == 0) { k++; } } thrust::device_vector d_keys = h_keys; thrust::host_vector h_vals = unittest::random_integers(n); for (size_t i = 0; i < n; i++) { h_vals[i] %= 10; } thrust::device_vector d_vals = h_vals; thrust::host_vector h_float_output(n); thrust::device_vector d_float_output(n); thrust::host_vector h_int_output(n); thrust::device_vector d_int_output(n); // mixed vals/output types thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_vals.begin(), h_float_output.begin(), (float) 3.5); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_vals.begin(), d_float_output.begin(), (float) 3.5); ASSERT_EQUAL(d_float_output, h_float_output); thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_vals.begin(), h_float_output.begin(), (int) 3); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_vals.begin(), d_float_output.begin(), (int) 3); ASSERT_EQUAL(d_float_output, h_float_output); thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_vals.begin(), h_int_output.begin(), (int) 3); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_vals.begin(), d_int_output.begin(), (int) 3); ASSERT_EQUAL(d_int_output, h_int_output); thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_vals.begin(), h_int_output.begin(), (float) 3.5); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_vals.begin(), d_int_output.begin(), (float) 3.5); ASSERT_EQUAL(d_int_output, h_int_output); } DECLARE_UNITTEST(TestScanByKeyMixedTypes); template void TestScanByKeyDiscardOutput(std::size_t n) { thrust::host_vector h_keys(n); thrust::default_random_engine rng; for (size_t i = 0, k = 0; i < n; i++) { h_keys[i] = static_cast(k); if (rng() % 10 == 0) { k++; } } thrust::device_vector d_keys = h_keys; thrust::host_vector h_vals(n); for (size_t i = 0; i < n; i++) { h_vals[i] = static_cast(i % 10); } thrust::device_vector d_vals = h_vals; auto out = thrust::make_discard_iterator(); // These are no-ops, but they should compile. thrust::exclusive_scan_by_key(d_keys.cbegin(), d_keys.cend(), d_vals.cbegin(), out); thrust::exclusive_scan_by_key(d_keys.cbegin(), d_keys.cend(), d_vals.cbegin(), out, T{}); thrust::exclusive_scan_by_key(d_keys.cbegin(), d_keys.cend(), d_vals.cbegin(), out, T{}, ::cuda::std::equal_to{}); thrust::exclusive_scan_by_key( d_keys.cbegin(), d_keys.cend(), d_vals.cbegin(), out, T{}, ::cuda::std::equal_to{}, ::cuda::std::multiplies{}); } DECLARE_VARIABLE_UNITTEST(TestScanByKeyDiscardOutput); void TestScanByKeyLargeInput() { const unsigned int N = 1 << 20; thrust::host_vector vals_sizes = unittest::random_integers(10); thrust::host_vector h_vals = unittest::random_integers(N); thrust::device_vector d_vals = h_vals; thrust::host_vector h_output(N, 0); thrust::device_vector d_output(N, 0); for (const auto val_size : vals_sizes) { const unsigned int n = val_size % N; // define segments thrust::host_vector h_keys(n); thrust::default_random_engine rng; for (size_t j = 0, k = 0; j < n; j++) { h_keys[j] = static_cast(k); if (rng() % 100 == 0) { k++; } } thrust::device_vector d_keys = h_keys; thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.begin() + n, h_vals.begin(), h_output.begin()); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.begin() + n, d_vals.begin(), d_output.begin()); ASSERT_EQUAL(d_output, h_output); } } DECLARE_UNITTEST(TestScanByKeyLargeInput); template void _TestScanByKeyWithLargeTypes() { size_t n = (64 * 1024) / sizeof(FixedVector); thrust::host_vector h_keys(n); thrust::host_vector> h_vals(n); thrust::host_vector> h_output(n); thrust::default_random_engine rng; for (size_t i = 0, k = 0; i < h_vals.size(); i++) { h_keys[i] = static_cast(k); h_vals[i] = FixedVector(static_cast(i)); if (rng() % 5 == 0) { k++; } } thrust::device_vector d_keys = h_keys; thrust::device_vector> d_vals = h_vals; thrust::device_vector> d_output(n); thrust::exclusive_scan_by_key(h_keys.begin(), h_keys.end(), h_vals.begin(), h_output.begin(), FixedVector(0)); thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_vals.begin(), d_output.begin(), FixedVector(0)); ASSERT_EQUAL_QUIET(h_output, d_output); } void TestScanByKeyWithLargeTypes() { _TestScanByKeyWithLargeTypes(); _TestScanByKeyWithLargeTypes(); _TestScanByKeyWithLargeTypes(); _TestScanByKeyWithLargeTypes(); // too many resources requested for launch: //_TestScanByKeyWithLargeTypes(); //_TestScanByKeyWithLargeTypes(); // too large to pass as argument: //_TestScanByKeyWithLargeTypes(); //_TestScanByKeyWithLargeTypes(); //_TestScanByKeyWithLargeTypes(); //_TestScanByKeyWithLargeTypes(); //_TestScanByKeyWithLargeTypes(); } DECLARE_UNITTEST(TestScanByKeyWithLargeTypes);