File size: 3,010 Bytes
28958dc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#include <thrust/device_vector.h>
#include <thrust/host_vector.h>
#include <thrust/sort.h>
#include <thrust/reduce.h>
#include <thrust/inner_product.h>
#include <thrust/extrema.h>
#include <thrust/functional.h>
#include <thrust/iterator/zip_iterator.h>
#include <thrust/iterator/constant_iterator.h>
#include <thrust/random.h>

#include <iostream>
#include <iterator>

// This example compute the mode [1] of a set of numbers.  If there
// are multiple modes, one with the smallest value it returned.
//
// [1] http://en.wikipedia.org/wiki/Mode_(statistics)

int main(void)
{
    const size_t N = 30;
    const size_t M = 10;
    thrust::default_random_engine rng;
    thrust::uniform_int_distribution<int> dist(0, M - 1);

    // generate random data on the host
    thrust::host_vector<int> h_data(N);
    for(size_t i = 0; i < N; i++)
        h_data[i] = dist(rng);

    // transfer data to device
    thrust::device_vector<int> d_data(h_data);
    
    // print the initial data
    std::cout << "initial data" << std::endl;
    thrust::copy(d_data.begin(), d_data.end(), std::ostream_iterator<int>(std::cout, " "));
    std::cout << std::endl;

    // sort data to bring equal elements together
    thrust::sort(d_data.begin(), d_data.end());
    
    // print the sorted data
    std::cout << "sorted data" << std::endl;
    thrust::copy(d_data.begin(), d_data.end(), std::ostream_iterator<int>(std::cout, " "));
    std::cout << std::endl;

    // count number of unique keys
    size_t num_unique = thrust::inner_product(d_data.begin(), d_data.end() - 1,
                                              d_data.begin() + 1,
                                              0,
                                              thrust::plus<int>(),
                                              thrust::not_equal_to<int>()) + 1;

    // count multiplicity of each key
    thrust::device_vector<int> d_output_keys(num_unique);
    thrust::device_vector<int> d_output_counts(num_unique);
    thrust::reduce_by_key(d_data.begin(), d_data.end(),
                          thrust::constant_iterator<int>(1),
                          d_output_keys.begin(),
                          d_output_counts.begin());
    
    // print the counts
    std::cout << "values" << std::endl;
    thrust::copy(d_output_keys.begin(), d_output_keys.end(), std::ostream_iterator<int>(std::cout, " "));
    std::cout << std::endl;

    // print the counts
    std::cout << "counts" << std::endl;
    thrust::copy(d_output_counts.begin(), d_output_counts.end(), std::ostream_iterator<int>(std::cout, " "));
    std::cout << std::endl;

    // find the index of the maximum count
    thrust::device_vector<int>::iterator mode_iter;
    mode_iter = thrust::max_element(d_output_counts.begin(), d_output_counts.end());

    int mode = d_output_keys[mode_iter - d_output_counts.begin()];
    int occurances = *mode_iter;
    
    std::cout << "Modal value " << mode << " occurs " << occurances << " times " << std::endl;
    
    return 0;
}