|
#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> |
|
|
|
|
|
|
|
|
|
|
|
|
|
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); |
|
|
|
|
|
thrust::host_vector<int> h_data(N); |
|
for(size_t i = 0; i < N; i++) |
|
h_data[i] = dist(rng); |
|
|
|
|
|
thrust::device_vector<int> d_data(h_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; |
|
|
|
|
|
thrust::sort(d_data.begin(), d_data.end()); |
|
|
|
|
|
std::cout << "sorted data" << std::endl; |
|
thrust::copy(d_data.begin(), d_data.end(), std::ostream_iterator<int>(std::cout, " ")); |
|
std::cout << std::endl; |
|
|
|
|
|
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; |
|
|
|
|
|
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()); |
|
|
|
|
|
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; |
|
|
|
|
|
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; |
|
|
|
|
|
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; |
|
} |
|
|
|
|