forked from NVIDIA/thrust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sort.test
36 lines (27 loc) · 818 Bytes
/
sort.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
PREAMBLE = \
"""
#include <thrust/sort.h>
"""
INITIALIZE = \
"""
thrust::host_vector<$KeyType> h_keys = unittest::random_integers<$KeyType>($InputSize);
thrust::device_vector<$KeyType> d_keys = h_keys;
thrust::device_vector<$KeyType> d_keys_copy = d_keys;
// test sort
thrust::sort(h_keys.begin(), h_keys.end());
thrust::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::sort(d_keys.begin(), d_keys.end());
"""
FINALIZE = \
"""
RECORD_TIME();
RECORD_SORTING_RATE(double($InputSize));
"""
KeyTypes = SignedIntegerTypes
InputSizes = StandardSizes
TestVariables = [('KeyType', KeyTypes), ('InputSize', InputSizes)]