File: async_sort.cu

package info (click to toggle)
cccl 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,248 kB
  • sloc: cpp: 264,457; python: 6,421; sh: 2,762; perl: 460; makefile: 114; xml: 13
file content (177 lines) | stat: -rw-r--r-- 8,640 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#include <thrust/detail/config.h>

// Disabled on MSVC && NVCC < 11.1 for GH issue #1098.
#if (THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_MSVC) && defined(__CUDACC__)
#  if (__CUDACC_VER_MAJOR__ < 11) || (__CUDACC_VER_MAJOR__ == 11 && __CUDACC_VER_MINOR__ < 1)
#    define THRUST_BUG_1098_ACTIVE
#  endif // NVCC version check
#endif // MSVC + NVCC check

#if _CCCL_STD_VER >= 2014 && !defined(THRUST_BUG_1098_ACTIVE)

#  include <thrust/async/sort.h>
#  include <thrust/device_vector.h>
#  include <thrust/host_vector.h>

#  include <unittest/unittest.h>

enum wait_policy
{
  wait_for_futures,
  do_not_wait_for_futures
};

template <typename T>
struct custom_greater
{
  _CCCL_HOST_DEVICE bool operator()(T rhs, T lhs) const
  {
    return lhs > rhs;
  }
};

#  define DEFINE_SORT_INVOKER(name, ...)                                                                     \
    template <typename T>                                                                                    \
    struct name                                                                                              \
    {                                                                                                        \
      template <typename ForwardIt, typename Sentinel>                                                       \
      _CCCL_HOST static void sync(ForwardIt&& first, Sentinel&& last)                                        \
      {                                                                                                      \
        ::thrust::sort(THRUST_FWD(first), THRUST_FWD(last));                                                 \
      }                                                                                                      \
                                                                                                             \
      template <typename ForwardIt, typename Sentinel>                                                       \
      _CCCL_HOST static auto async(ForwardIt&& first, Sentinel&& last) THRUST_RETURNS(::thrust::async::sort( \
        __VA_ARGS__ THRUST_PP_COMMA_IF(THRUST_PP_ARITY(__VA_ARGS__)) THRUST_FWD(first), THRUST_FWD(last)))   \
    };                                                                                                       \
    /**/

DEFINE_SORT_INVOKER(sort_invoker);
DEFINE_SORT_INVOKER(sort_invoker_device, thrust::device);

#  define DEFINE_SORT_OP_INVOKER(name, op, ...)                                                                     \
    template <typename T>                                                                                           \
    struct name                                                                                                     \
    {                                                                                                               \
      template <typename ForwardIt, typename Sentinel>                                                              \
      _CCCL_HOST static void sync(ForwardIt&& first, Sentinel&& last)                                               \
      {                                                                                                             \
        ::thrust::sort(THRUST_FWD(first), THRUST_FWD(last), op<T>{});                                               \
      }                                                                                                             \
                                                                                                                    \
      template <typename ForwardIt, typename Sentinel>                                                              \
      _CCCL_HOST static auto async(ForwardIt&& first, Sentinel&& last) THRUST_RETURNS(::thrust::async::sort(        \
        __VA_ARGS__ THRUST_PP_COMMA_IF(THRUST_PP_ARITY(__VA_ARGS__)) THRUST_FWD(first), THRUST_FWD(last), op<T>{})) \
    };                                                                                                              \
    /**/

DEFINE_SORT_OP_INVOKER(sort_invoker_less, thrust::less);
DEFINE_SORT_OP_INVOKER(sort_invoker_less_device, thrust::less, thrust::device);

DEFINE_SORT_OP_INVOKER(sort_invoker_greater, thrust::greater);
DEFINE_SORT_OP_INVOKER(sort_invoker_greater_device, thrust::greater, thrust::device);

DEFINE_SORT_OP_INVOKER(sort_invoker_custom_greater, custom_greater);
DEFINE_SORT_OP_INVOKER(sort_invoker_custom_greater_device, custom_greater, thrust::device);

#  undef DEFINE_SORT_INVOKER
#  undef DEFINE_SORT_OP_INVOKER

///////////////////////////////////////////////////////////////////////////////

template <template <typename> class SortInvoker, wait_policy WaitPolicy>
struct test_async_sort
{
  template <typename T>
  struct tester
  {
    _CCCL_HOST void operator()(std::size_t n)
    {
      thrust::host_vector<T> h0_data(unittest::random_integers<T>(n));
      thrust::device_vector<T> d0_data(h0_data);

      ASSERT_EQUAL(h0_data, d0_data);

      SortInvoker<T>::sync(h0_data.begin(), h0_data.end());

      auto f0 = SortInvoker<T>::async(d0_data.begin(), d0_data.end());

      _CCCL_IF_CONSTEXPR (wait_for_futures == WaitPolicy)
      {
        f0.wait();

        ASSERT_EQUAL(h0_data, d0_data);
      }
    }
  };
};
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker, wait_for_futures>::tester), NumericTypes, test_async_sort);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker, do_not_wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_no_wait);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_device, wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_policy);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_device, do_not_wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_policy_no_wait);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_less, wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_less);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_less, do_not_wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_less_no_wait);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_less_device, wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_policy_less);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_less_device, do_not_wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_policy_less_no_wait);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_greater, wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_greater);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_greater, do_not_wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_greater_no_wait);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_greater_device, wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_policy_greater);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_greater_device, do_not_wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_policy_greater_no_wait);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_custom_greater, wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_custom_greater);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_custom_greater, do_not_wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_custom_greater_no_wait);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_custom_greater_device, wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_policy_custom_greater);
DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES_AND_NAME(
  THRUST_PP_EXPAND_ARGS(test_async_sort<sort_invoker_custom_greater_device, do_not_wait_for_futures>::tester),
  NumericTypes,
  test_async_sort_policy_custom_greater_no_wait);

///////////////////////////////////////////////////////////////////////////////

// TODO: Async copy then sort.

// TODO: Test future return type.

#endif