File: zip_iterator_reduce.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 (51 lines) | stat: -rw-r--r-- 1,407 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
#include <thrust/iterator/zip_iterator.h>
#include <thrust/reduce.h>

#include <unittest/unittest.h>

using namespace unittest;

template <typename Tuple>
struct TuplePlus
{
  _CCCL_HOST_DEVICE Tuple operator()(Tuple x, Tuple y) const
  {
    using namespace thrust;
    return make_tuple(get<0>(x) + get<0>(y), get<1>(x) + get<1>(y));
  }
}; // end SumTuple

template <typename T>
struct TestZipIteratorReduce
{
  void operator()(const size_t n)
  {
    using namespace thrust;

    host_vector<T> h_data0 = unittest::random_samples<T>(n);
    host_vector<T> h_data1 = unittest::random_samples<T>(n);

    device_vector<T> d_data0 = h_data0;
    device_vector<T> d_data1 = h_data1;

    typedef tuple<T, T> Tuple;

    // run on host
    Tuple h_result = reduce(
      make_zip_iterator(make_tuple(h_data0.begin(), h_data1.begin())),
      make_zip_iterator(make_tuple(h_data0.end(), h_data1.end())),
      make_tuple<T, T>(0, 0),
      TuplePlus<Tuple>());

    // run on device
    Tuple d_result = reduce(
      make_zip_iterator(make_tuple(d_data0.begin(), d_data1.begin())),
      make_zip_iterator(make_tuple(d_data0.end(), d_data1.end())),
      make_tuple<T, T>(0, 0),
      TuplePlus<Tuple>());

    ASSERT_EQUAL(get<0>(h_result), get<0>(d_result));
    ASSERT_EQUAL(get<1>(h_result), get<1>(d_result));
  }
};
VariableUnitTest<TestZipIteratorReduce, IntegralTypes> TestZipIteratorReduceInstance;