File: sort_variable_bits.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 (47 lines) | stat: -rw-r--r-- 1,187 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
#include <thrust/sort.h>

#include <algorithm>

#include <unittest/unittest.h>

using namespace unittest;

typedef unittest::type_list<
#if !(defined(__GNUC__) && (__GNUC__ <= 4) && (__GNUC_MINOR__ <= 1))
  // XXX GCC 4.1 miscompiles the char sorts with -O2 for some reason
  unittest::uint8_t,
#endif
  unittest::uint16_t,
  unittest::uint32_t,
  unittest::uint64_t>
  UnsignedIntegerTypes;

template <typename T>
struct TestSortVariableBits
{
  void operator()(const size_t n)
  {
    for (size_t num_bits = 0; num_bits < 8 * sizeof(T); num_bits += 3)
    {
      thrust::host_vector<T> h_keys = unittest::random_integers<T>(n);

      size_t mask = (1 << num_bits) - 1;
      for (size_t i = 0; i < n; i++)
      {
        h_keys[i] &= mask;
      }

      thrust::host_vector<T> reference = h_keys;
      thrust::device_vector<T> d_keys  = h_keys;

      std::sort(reference.begin(), reference.end());

      thrust::sort(h_keys.begin(), h_keys.end());
      thrust::sort(d_keys.begin(), d_keys.end());

      ASSERT_EQUAL(reference, h_keys);
      ASSERT_EQUAL(h_keys, d_keys);
    }
  }
};
VariableUnitTest<TestSortVariableBits, UnsignedIntegerTypes> TestSortVariableBitsInstance;