forked from NVIDIA/thrust
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathradix_sort_bits.test
42 lines (31 loc) · 976 Bytes
/
radix_sort_bits.test
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
PREAMBLE = \
"""
#include <thrust/sort.h>
"""
INITIALIZE = \
"""
const size_t InputSize = 1 << 24;
thrust::host_vector<$KeyType> h_keys = unittest::random_integers<$KeyType>(InputSize);
// set upper bits to zero
for(size_t i = 0; i < InputSize; i++)
h_keys[i] >>= (32 - $KeyBits);
thrust::device_vector<$KeyType> d_keys = h_keys;
thrust::device_vector<$KeyType> d_keys_copy = d_keys;
// test sort
thrust::stable_sort(h_keys.begin(), h_keys.end());
thrust::stable_sort(d_keys.begin(), d_keys.end());
ASSERT_EQUAL(d_keys, h_keys);
"""
TIME = \
"""
thrust::copy(d_keys_copy.begin(), d_keys_copy.end(), d_keys.begin());
thrust::stable_sort(d_keys.begin(), d_keys.end());
"""
FINALIZE = \
"""
RECORD_TIME();
RECORD_SORTING_RATE(double(InputSize));
"""
KeyTypes = ['unsigned int']
KeyBits = range(1, 33)
TestVariables = [('KeyType', KeyTypes), ('KeyBits',KeyBits)]