thrust::scatter
Defined in thrust/scatter.h
-
template<typename InputIterator1, typename InputIterator2, typename RandomAccessIterator>
void thrust::scatter(InputIterator1 first, InputIterator1 last, InputIterator2 map, RandomAccessIterator result) scatter
copies elements from a source range into an output array according to a map. For each iteratori
in the range [first
,last
), the value*i
is assigned tooutput[*(map + (i - first))]
. The output iterator must permit random access. If the same index appears more than once in the range[map, map + (last - first))
, the result is undefined.The following code snippet demonstrates how to use
scatter
to reorder a range.#include <thrust/scatter.h> #include <thrust/device_vector.h> ... // mark even indices with a 1; odd indices with a 0 int values[10] = {1, 0, 1, 0, 1, 0, 1, 0, 1, 0}; thrust::device_vector<int> d_values(values, values + 10); // scatter all even indices into the first half of the // range, and odd indices vice versa int map[10] = {0, 5, 1, 6, 2, 7, 3, 8, 4, 9}; thrust::device_vector<int> d_map(map, map + 10); thrust::device_vector<int> d_output(10); thrust::scatter(d_values.begin(), d_values.end(), d_map.begin(), d_output.begin()); // d_output is now {1, 1, 1, 1, 1, 0, 0, 0, 0, 0}
Note
scatter
is the inverse of thrust::gather.- Parameters
first – Beginning of the sequence of values to scatter.
last – End of the sequence of values to scatter.
map – Beginning of the sequence of output indices.
result – Destination of the source elements.
- Template Parameters
InputIterator1 – must be a model of Input Iterator and
InputIterator1's
value_type
must be convertible toRandomAccessIterator's
value_type
.InputIterator2 – must be a model of Input Iterator and
InputIterator2's
value_type
must be convertible toRandomAccessIterator's
difference_type
.RandomAccessIterator – must be a model of Random Access iterator.
- Pre
The iterator
result + i
shall not refer to any element referenced by any iteratorj
in the range[first,last)
for all iteratorsi
in the range[map,map + (last - first))
.- Pre
The iterator
result + i
shall not refer to any element referenced by any iteratorj
in the range[map,map + (last - first))
for all iteratorsi
in the range[map,map + (last - first))
.- Pre
The expression
result[*i]
shall be valid for all iterators in the range[map,map + (last - first))
.