Spaces:
Runtime error
Runtime error
File size: 3,733 Bytes
be11144 |
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 |
#include <unittest/unittest.h>
#include <thrust/iterator/reverse_iterator.h>
#include <thrust/sequence.h>
#include <thrust/scan.h>
void TestReverseIteratorCopyConstructor(void)
{
thrust::host_vector<int> h_v(1,13);
thrust::reverse_iterator<thrust::host_vector<int>::iterator> h_iter0(h_v.end());
thrust::reverse_iterator<thrust::host_vector<int>::iterator> h_iter1(h_iter0);
ASSERT_EQUAL_QUIET(h_iter0, h_iter1);
ASSERT_EQUAL(*h_iter0, *h_iter1);
thrust::device_vector<int> d_v(1,13);
thrust::reverse_iterator<thrust::device_vector<int>::iterator> d_iter2(d_v.end());
thrust::reverse_iterator<thrust::device_vector<int>::iterator> d_iter3(d_iter2);
ASSERT_EQUAL_QUIET(d_iter2, d_iter3);
ASSERT_EQUAL(*d_iter2, *d_iter3);
}
DECLARE_UNITTEST(TestReverseIteratorCopyConstructor);
void TestReverseIteratorIncrement(void)
{
thrust::host_vector<int> h_v(4);
thrust::sequence(h_v.begin(), h_v.end());
thrust::reverse_iterator<thrust::host_vector<int>::iterator> h_iter(h_v.end());
ASSERT_EQUAL(*h_iter, 3);
h_iter++;
ASSERT_EQUAL(*h_iter, 2);
h_iter++;
ASSERT_EQUAL(*h_iter, 1);
h_iter++;
ASSERT_EQUAL(*h_iter, 0);
thrust::device_vector<int> d_v(4);
thrust::sequence(d_v.begin(), d_v.end());
thrust::reverse_iterator<thrust::device_vector<int>::iterator> d_iter(d_v.end());
ASSERT_EQUAL(*d_iter, 3);
d_iter++;
ASSERT_EQUAL(*d_iter, 2);
d_iter++;
ASSERT_EQUAL(*d_iter, 1);
d_iter++;
ASSERT_EQUAL(*d_iter, 0);
}
DECLARE_UNITTEST(TestReverseIteratorIncrement);
template <typename Vector>
void TestReverseIteratorCopy(void)
{
Vector source(4);
source[0] = 10;
source[1] = 20;
source[2] = 30;
source[3] = 40;
Vector destination(4,0);
thrust::copy(thrust::make_reverse_iterator(source.end()),
thrust::make_reverse_iterator(source.begin()),
destination.begin());
ASSERT_EQUAL(destination[0], 40);
ASSERT_EQUAL(destination[1], 30);
ASSERT_EQUAL(destination[2], 20);
ASSERT_EQUAL(destination[3], 10);
}
DECLARE_VECTOR_UNITTEST(TestReverseIteratorCopy);
void TestReverseIteratorExclusiveScanSimple(void)
{
typedef int T;
const size_t n = 10;
thrust::host_vector<T> h_data(n);
thrust::sequence(h_data.begin(), h_data.end());
thrust::device_vector<T> d_data = h_data;
thrust::host_vector<T> h_result(h_data.size());
thrust::device_vector<T> d_result(d_data.size());
thrust::exclusive_scan(thrust::make_reverse_iterator(h_data.end()),
thrust::make_reverse_iterator(h_data.begin()),
h_result.begin());
thrust::exclusive_scan(thrust::make_reverse_iterator(d_data.end()),
thrust::make_reverse_iterator(d_data.begin()),
d_result.begin());
ASSERT_EQUAL_QUIET(h_result, d_result);
}
DECLARE_UNITTEST(TestReverseIteratorExclusiveScanSimple);
template <typename T>
struct TestReverseIteratorExclusiveScan
{
void operator()(const size_t n)
{
thrust::host_vector<T> h_data = unittest::random_samples<T>(n);
thrust::device_vector<T> d_data = h_data;
thrust::host_vector<T> h_result(n);
thrust::device_vector<T> d_result(n);
thrust::exclusive_scan(thrust::make_reverse_iterator(h_data.end()),
thrust::make_reverse_iterator(h_data.begin()),
h_result.begin());
thrust::exclusive_scan(thrust::make_reverse_iterator(d_data.end()),
thrust::make_reverse_iterator(d_data.begin()),
d_result.begin());
ASSERT_EQUAL_QUIET(h_result, d_result);
}
};
VariableUnitTest<TestReverseIteratorExclusiveScan, IntegralTypes> TestReverseIteratorExclusiveScanInstance;
|