#include #include #include #include // BinaryPredicate for the head flag segment representation // equivalent to cuda::std::not_fn(thrust::project2nd())); template struct head_flag_predicate { __host__ __device__ bool operator()(HeadFlagType, HeadFlagType right) const { return !right; } }; template void print(const Vector& v) { for (const auto& e : v) { std::cout << e << " "; } std::cout << '\n'; } int main() { int keys[] = {0, 0, 0, 1, 1, 2, 2, 2, 2, 3, 4, 4, 5, 5, 5}; // segments represented with keys int flags[] = {1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0}; // segments represented with head flags int values[] = {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}; // values corresponding to each key int N = sizeof(keys) / sizeof(int); // number of elements // copy input data to device thrust::device_vector d_keys(keys, keys + N); thrust::device_vector d_flags(flags, flags + N); thrust::device_vector d_values(values, values + N); // allocate storage for output thrust::device_vector d_output(N); // inclusive scan using keys thrust::inclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_values.begin(), d_output.begin()); std::cout << "Inclusive Segmented Scan w/ Key Sequence\n"; std::cout << " keys : "; print(d_keys); std::cout << " input values : "; print(d_values); std::cout << " output values : "; print(d_output); // inclusive scan using head flags thrust::inclusive_scan_by_key( d_flags.begin(), d_flags.end(), d_values.begin(), d_output.begin(), head_flag_predicate()); std::cout << "\nInclusive Segmented Scan w/ Head Flag Sequence\n"; std::cout << " head flags : "; print(d_flags); std::cout << " input values : "; print(d_values); std::cout << " output values : "; print(d_output); // exclusive scan using keys thrust::exclusive_scan_by_key(d_keys.begin(), d_keys.end(), d_values.begin(), d_output.begin()); std::cout << "\nExclusive Segmented Scan w/ Key Sequence\n"; std::cout << " keys : "; print(d_keys); std::cout << " input values : "; print(d_values); std::cout << " output values : "; print(d_output); // exclusive scan using head flags thrust::exclusive_scan_by_key( d_flags.begin(), d_flags.end(), d_values.begin(), d_output.begin(), 0, head_flag_predicate()); std::cout << "\nExclusive Segmented Scan w/ Head Flag Sequence\n"; std::cout << " head flags : "; print(d_flags); std::cout << " input values : "; print(d_values); std::cout << " output values : "; print(d_output); return 0; }