#include #include #include #include template void sort(my_system& system, RandomAccessIterator, RandomAccessIterator) { system.validate_dispatch(); } void TestSortDispatchExplicit() { thrust::device_vector vec(1); my_system sys(0); thrust::sort(sys, vec.begin(), vec.begin()); ASSERT_EQUAL(true, sys.is_valid()); } DECLARE_UNITTEST(TestSortDispatchExplicit); template void sort(my_tag, RandomAccessIterator first, RandomAccessIterator) { *first = 13; } void TestSortDispatchImplicit() { thrust::device_vector vec(1); thrust::sort(thrust::retag(vec.begin()), thrust::retag(vec.begin())); ASSERT_EQUAL(13, vec.front()); } DECLARE_UNITTEST(TestSortDispatchImplicit); template void InitializeSimpleKeySortTest(Vector& unsorted_keys, Vector& sorted_keys) { unsorted_keys.resize(7); unsorted_keys = {1, 3, 6, 5, 2, 0, 4}; sorted_keys.resize(7); sorted_keys = {0, 1, 2, 3, 4, 5, 6}; } template void TestSortSimple() { Vector unsorted_keys; Vector sorted_keys; InitializeSimpleKeySortTest(unsorted_keys, sorted_keys); thrust::sort(unsorted_keys.begin(), unsorted_keys.end()); ASSERT_EQUAL(unsorted_keys, sorted_keys); } DECLARE_VECTOR_UNITTEST(TestSortSimple); template void TestSortAscendingKey(const size_t n) { thrust::host_vector h_data = unittest::random_integers(n); thrust::device_vector d_data = h_data; thrust::sort(h_data.begin(), h_data.end(), ::cuda::std::less()); thrust::sort(d_data.begin(), d_data.end(), ::cuda::std::less()); ASSERT_EQUAL(h_data, d_data); } DECLARE_VARIABLE_UNITTEST(TestSortAscendingKey); void TestSortDescendingKey() { const size_t n = 10027; thrust::host_vector h_data = unittest::random_integers(n); thrust::device_vector d_data = h_data; thrust::sort(h_data.begin(), h_data.end(), ::cuda::std::greater()); thrust::sort(d_data.begin(), d_data.end(), ::cuda::std::greater()); ASSERT_EQUAL(h_data, d_data); } DECLARE_UNITTEST(TestSortDescendingKey); void TestSortBool() { const size_t n = 10027; thrust::host_vector h_data = unittest::random_integers(n); thrust::device_vector d_data = h_data; thrust::sort(h_data.begin(), h_data.end()); thrust::sort(d_data.begin(), d_data.end()); ASSERT_EQUAL(h_data, d_data); } DECLARE_UNITTEST(TestSortBool); void TestSortBoolDescending() { const size_t n = 10027; thrust::host_vector h_data = unittest::random_integers(n); thrust::device_vector d_data = h_data; thrust::sort(h_data.begin(), h_data.end(), ::cuda::std::greater()); thrust::sort(d_data.begin(), d_data.end(), ::cuda::std::greater()); ASSERT_EQUAL(h_data, d_data); } DECLARE_UNITTEST(TestSortBoolDescending); // See also: https://github.com/NVIDIA/cccl/issues/4919 void TestSortTrivial() { thrust::host_vector h_data = {1, 0, -1, -2, -3}; thrust::host_vector ref = {-3, -2, -1, 0, 1}; thrust::sort(h_data.begin(), h_data.end()); ASSERT_EQUAL(h_data, ref); } DECLARE_UNITTEST(TestSortTrivial);