| | #include <thrust/iterator/counting_iterator.h> |
| | #include <thrust/iterator/transform_iterator.h> |
| | #include <thrust/iterator/permutation_iterator.h> |
| | #include <thrust/functional.h> |
| | #include <thrust/fill.h> |
| | #include <thrust/device_vector.h> |
| | #include <thrust/copy.h> |
| | #include <iostream> |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | template <typename Iterator> |
| | class strided_range |
| | { |
| | public: |
| |
|
| | typedef typename thrust::iterator_difference<Iterator>::type difference_type; |
| |
|
| | struct stride_functor : public thrust::unary_function<difference_type,difference_type> |
| | { |
| | difference_type stride; |
| |
|
| | stride_functor(difference_type stride) |
| | : stride(stride) {} |
| |
|
| | __host__ __device__ |
| | difference_type operator()(const difference_type& i) const |
| | { |
| | return stride * i; |
| | } |
| | }; |
| |
|
| | typedef typename thrust::counting_iterator<difference_type> CountingIterator; |
| | typedef typename thrust::transform_iterator<stride_functor, CountingIterator> TransformIterator; |
| | typedef typename thrust::permutation_iterator<Iterator,TransformIterator> PermutationIterator; |
| |
|
| | |
| | typedef PermutationIterator iterator; |
| |
|
| | |
| | strided_range(Iterator first, Iterator last, difference_type stride) |
| | : first(first), last(last), stride(stride) {} |
| | |
| | iterator begin(void) const |
| | { |
| | return PermutationIterator(first, TransformIterator(CountingIterator(0), stride_functor(stride))); |
| | } |
| |
|
| | iterator end(void) const |
| | { |
| | return begin() + ((last - first) + (stride - 1)) / stride; |
| | } |
| | |
| | protected: |
| | Iterator first; |
| | Iterator last; |
| | difference_type stride; |
| | }; |
| |
|
| | int main(void) |
| | { |
| | thrust::device_vector<int> data(8); |
| | data[0] = 10; |
| | data[1] = 20; |
| | data[2] = 30; |
| | data[3] = 40; |
| | data[4] = 50; |
| | data[5] = 60; |
| | data[6] = 70; |
| | data[7] = 80; |
| |
|
| | |
| | std::cout << "data: "; |
| | thrust::copy(data.begin(), data.end(), std::ostream_iterator<int>(std::cout, " ")); std::cout << std::endl; |
| |
|
| | typedef thrust::device_vector<int>::iterator Iterator; |
| | |
| | |
| | strided_range<Iterator> evens(data.begin(), data.end(), 2); |
| | std::cout << "sum of even indices: " << thrust::reduce(evens.begin(), evens.end()) << std::endl; |
| | |
| | |
| | strided_range<Iterator> odds(data.begin() + 1, data.end(), 2); |
| | std::cout << "sum of odd indices: " << thrust::reduce(odds.begin(), odds.end()) << std::endl; |
| |
|
| | |
| | std::cout << "setting odd indices to zero: "; |
| | thrust::fill(odds.begin(), odds.end(), 0); |
| | thrust::copy(data.begin(), data.end(), std::ostream_iterator<int>(std::cout, " ")); std::cout << std::endl; |
| |
|
| | return 0; |
| | } |
| |
|