Spaces:
Runtime error
Runtime error
File size: 1,897 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 |
#include <thrust/device_vector.h>
#include <thrust/scan.h>
#include <thrust/copy.h>
#include <thrust/gather.h>
#include <thrust/binary_search.h>
#include <thrust/iterator/counting_iterator.h>
#include <iostream>
#include <iterator>
// This example decodes a run-length code [1] for an array of characters.
//
// [1] http://en.wikipedia.org/wiki/Run-length_encoding
int main(void)
{
// allocate storage for compressed input and run lengths
thrust::device_vector<char> input(6);
thrust::device_vector<int> lengths(6);
input[0] = 'a'; lengths[0] = 3;
input[1] = 'b'; lengths[1] = 5;
input[2] = 'c'; lengths[2] = 1;
input[3] = 'd'; lengths[3] = 2;
input[4] = 'e'; lengths[4] = 9;
input[5] = 'f'; lengths[5] = 2;
// print the initial data
std::cout << "run-length encoded input:" << std::endl;
for(size_t i = 0; i < 6; i++)
std::cout << "(" << input[i] << "," << lengths[i] << ")";
std::cout << std::endl << std::endl;
// scan the lengths
thrust::inclusive_scan(lengths.begin(), lengths.end(), lengths.begin());
// output size is sum of the run lengths
int N = lengths.back();
// compute input index for each output element
thrust::device_vector<int> indices(N);
thrust::lower_bound(lengths.begin(), lengths.end(),
thrust::counting_iterator<int>(1),
thrust::counting_iterator<int>(N + 1),
indices.begin());
// gather input elements
thrust::device_vector<char> output(N);
thrust::gather(indices.begin(), indices.end(),
input.begin(),
output.begin());
// print the initial data
std::cout << "decoded output:" << std::endl;
thrust::copy(output.begin(), output.end(), std::ostream_iterator<char>(std::cout, ""));
std::cout << std::endl;
return 0;
}
|