thrust::inclusive_scan#
Overloads#
inclusive_scan(exec, first, last, result)#
-
template<typename DerivedPolicy, typename InputIterator, typename OutputIterator>
OutputIterator thrust::inclusive_scan( - const thrust::detail::execution_policy_base<DerivedPolicy> &exec,
- InputIterator first,
- InputIterator last,
- OutputIterator result,
inclusive_scancomputes an inclusive prefix sum operation. The term ‘inclusive’ means that each result includes the corresponding input operand in the partial sum. More precisely,*firstis assigned to*resultand the sum of*firstand*(first + 1)is assigned to*(result + 1), and so on. This version ofinclusive_scanassumes plus as the associative operator. When the input and output sequences are the same, the scan is performed in-place.inclusive_scanis similar tostd::partial_sumin the STL. The primary difference between the two functions is thatstd::partial_sumguarantees a serial summation order, whileinclusive_scanrequires associativity of the binary operation to parallelize the prefix sum.Results are not deterministic for pseudo-associative operators (e.g., addition of floating-point types). Results for pseudo-associative operators may vary from run to run.
The algorithm’s execution is parallelized as determined by
exec.The following code snippet demonstrates how to use
inclusive_scanto compute an in-place prefix sum using thethrust::hostexecution policy for parallelization:#include <thrust/scan.h> #include <thrust/execution_policy.h> ... int data[6] = {1, 0, 2, 2, 1, 3}; thrust::inclusive_scan(thrust::host, data, data + 6, data); // in-place scan // data is now {1, 1, 3, 5, 6, 9}
- Parameters:
exec – The execution policy to use for parallelization.
first – The beginning of the input sequence.
last – The end of the input sequence.
result – The beginning of the output sequence.
- Template Parameters:
DerivedPolicy – The name of the derived execution policy.
InputIterator – is a model of Input Iterator and
InputIterator'svalue_typeis convertible toOutputIterator'svalue_type.OutputIterator – is a model of Output Iterator, and if
xandyare objects ofOutputIterator'svalue_type, thenx + yis defined. IfTisOutputIterator'svalue_type, thenT(0)is defined.
- Returns:
The end of the output sequence.
- Pre:
firstmay equalresultbut the range[first, last)and the range[result, result + (last - first))shall not overlap otherwise.
inclusive_scan(first, last, result)#
-
template<typename InputIterator, typename OutputIterator>
OutputIterator thrust::inclusive_scan( - InputIterator first,
- InputIterator last,
- OutputIterator result,
inclusive_scancomputes an inclusive prefix sum operation. The term ‘inclusive’ means that each result includes the corresponding input operand in the partial sum. More precisely,*firstis assigned to*resultand the sum of*firstand*(first + 1)is assigned to*(result + 1), and so on. This version ofinclusive_scanassumes plus as the associative operator. When the input and output sequences are the same, the scan is performed in-place.inclusive_scanis similar tostd::partial_sumin the STL. The primary difference between the two functions is thatstd::partial_sumguarantees a serial summation order, whileinclusive_scanrequires associativity of the binary operation to parallelize the prefix sum.Results are not deterministic for pseudo-associative operators (e.g., addition of floating-point types). Results for pseudo-associative operators may vary from run to run.
The following code snippet demonstrates how to use
inclusive_scan#include <thrust/scan.h> int data[6] = {1, 0, 2, 2, 1, 3}; thrust::inclusive_scan(data, data + 6, data); // in-place scan // data is now {1, 1, 3, 5, 6, 9}
- Parameters:
first – The beginning of the input sequence.
last – The end of the input sequence.
result – The beginning of the output sequence.
- Template Parameters:
InputIterator – is a model of Input Iterator and
InputIterator'svalue_typeis convertible toOutputIterator'svalue_type.OutputIterator – is a model of Output Iterator, and if
xandyare objects ofOutputIterator'svalue_type, thenx + yis defined. IfTisOutputIterator'svalue_type, thenT(0)is defined.
- Returns:
The end of the output sequence.
- Pre:
firstmay equalresultbut the range[first, last)and the range[result, result + (last - first))shall not overlap otherwise.
inclusive_scan(exec, first, last, result, binary_op)#
-
template<typename DerivedPolicy, typename InputIterator, typename OutputIterator, typename AssociativeOperator>
OutputIterator thrust::inclusive_scan( - const thrust::detail::execution_policy_base<DerivedPolicy> &exec,
- InputIterator first,
- InputIterator last,
- OutputIterator result,
- AssociativeOperator binary_op,
inclusive_scancomputes an inclusive prefix sum operation. The term ‘inclusive’ means that each result includes the corresponding input operand in the partial sum. When the input and output sequences are the same, the scan is performed in-place.inclusive_scanis similar tostd::partial_sumin the STL. The primary difference between the two functions is thatstd::partial_sumguarantees a serial summation order, whileinclusive_scanrequires associativity of the binary operation to parallelize the prefix sum.Results are not deterministic for pseudo-associative operators (e.g., addition of floating-point types). Results for pseudo-associative operators may vary from run to run.
The algorithm’s execution is parallelized as determined by
exec.The following code snippet demonstrates how to use
inclusive_scanto compute an in-place prefix sum using thethrust::hostexecution policy for parallelization:int data[10] = {-5, 0, 2, -3, 2, 4, 0, -1, 2, 8}; ::cuda::maximum<int> binary_op; thrust::inclusive_scan(thrust::host, data, data + 10, data, binary_op); // in-place scan // data is now {-5, 0, 2, 2, 2, 4, 4, 4, 4, 8}
- Parameters:
exec – The execution policy to use for parallelization.
first – The beginning of the input sequence.
last – The end of the input sequence.
result – The beginning of the output sequence.
binary_op – The associative operator used to ‘sum’ values.
- Template Parameters:
DerivedPolicy – The name of the derived execution policy.
InputIterator – is a model of Input Iterator and
InputIterator'svalue_typeis convertible toOutputIterator'svalue_type.OutputIterator – is a model of Output Iterator and
OutputIterator'svalue_typeis convertible to bothAssociativeOperator'sfirst and second argument type.AssociativeOperator – The function’s return type must be convertible to
OutputIterator'svalue_type.
- Returns:
The end of the output sequence.
- Pre:
firstmay equalresultbut the range[first, last)and the range[result, result + (last - first))shall not overlap otherwise.
inclusive_scan(first, last, result, binary_op)#
-
template<typename InputIterator, typename OutputIterator, typename AssociativeOperator>
OutputIterator thrust::inclusive_scan( - InputIterator first,
- InputIterator last,
- OutputIterator result,
- AssociativeOperator binary_op,
inclusive_scancomputes an inclusive prefix sum operation. The term ‘inclusive’ means that each result includes the corresponding input operand in the partial sum. When the input and output sequences are the same, the scan is performed in-place.inclusive_scanis similar tostd::partial_sumin the STL. The primary difference between the two functions is thatstd::partial_sumguarantees a serial summation order, whileinclusive_scanrequires associativity of the binary operation to parallelize the prefix sum.Results are not deterministic for pseudo-associative operators (e.g., addition of floating-point types). Results for pseudo-associative operators may vary from run to run.
The following code snippet demonstrates how to use
inclusive_scanint data[10] = {-5, 0, 2, -3, 2, 4, 0, -1, 2, 8}; ::cuda::maximum<int> binary_op; thrust::inclusive_scan(data, data + 10, data, binary_op); // in-place scan // data is now {-5, 0, 2, 2, 2, 4, 4, 4, 4, 8}
- Parameters:
first – The beginning of the input sequence.
last – The end of the input sequence.
result – The beginning of the output sequence.
binary_op – The associative operator used to ‘sum’ values.
- Template Parameters:
InputIterator – is a model of Input Iterator and
InputIterator'svalue_typeis convertible toOutputIterator'svalue_type.OutputIterator – is a model of Output Iterator and
OutputIterator'svalue_typeis convertible to bothAssociativeOperator'sfirst and second argument type.AssociativeOperator – The function’s return type must be convertible to
OutputIterator'svalue_type.
- Returns:
The end of the output sequence.
- Pre:
firstmay equalresultbut the range[first, last)and the range[result, result + (last - first))shall not overlap otherwise.
inclusive_scan(exec, first, last, result, init, binary_op)#
-
template<typename DerivedPolicy, typename InputIterator, typename OutputIterator, typename T, typename AssociativeOperator>
OutputIterator thrust::inclusive_scan( - const thrust::detail::execution_policy_base<DerivedPolicy> &exec,
- InputIterator first,
- InputIterator last,
- OutputIterator result,
- T init,
- AssociativeOperator binary_op,
inclusive_scancomputes an inclusive prefix sum operation. The term ‘inclusive’ means that each result includes the corresponding input operand in the partial sum. More precisely,binary_op(init, *first)is assigned to*resultand so on. This version ofinclusive_scanrequires both an associative operator and an initial valueinit. When the input and output sequences are the same, the scan is performed in-place.Results are not deterministic for pseudo-associative operators (e.g., addition of floating-point types). Results for pseudo-associative operators may vary from run to run.
The algorithm’s execution is parallelized as determined by
exec.The following code snippet demonstrates how to use
inclusive_scanwith initial value to compute an in-place prefix sum using thethrust::hostexecution policy for parallelization:int data[10] = {-5, 0, 2, -3, 2, 4, 0, -1, 2, 8}; thrust::inclusive_scan(thrust::host, data, data + 10, data, 1, ::cuda::maximum<>{}); // in-place scan // data is now {1, 1, 2, 2, 2, 4, 4, 4, 4, 8}
- Parameters:
exec – The execution policy to use for parallelization.
first – The beginning of the input sequence.
last – The end of the input sequence.
result – The beginning of the output sequence.
init – The initial value.
binary_op – The associative operator used to ‘sum’ values.
- Template Parameters:
DerivedPolicy – The name of the derived execution policy.
InputIterator – is a model of Input Iterator and
InputIterator'svalue_typeis convertible toOutputIterator'svalue_type.OutputIterator – is a model of Output Iterator and
OutputIterator'svalue_typeis convertible to bothAssociativeOperator'sfirst and second argument type.T – is convertible to
OutputIterator'svalue_type.AssociativeOperator – The function’s return type must be convertible to
OutputIterator'svalue_type.
- Returns:
The end of the output sequence.
- Pre:
firstmay equalresultbut the range[first, last)and the range[result, result + (last - first))shall not overlap otherwise.
inclusive_scan(first, last, result, init, binary_op)#
-
template<typename InputIterator, typename OutputIterator, typename T, typename AssociativeOperator>
OutputIterator thrust::inclusive_scan( - InputIterator first,
- InputIterator last,
- OutputIterator result,
- T init,
- AssociativeOperator binary_op,
inclusive_scancomputes an inclusive prefix sum operation. The term ‘inclusive’ means that each result includes the corresponding input operand in the partial sum. More precisely,binary_op(init, *first)is assigned to*resultand so on. This version ofinclusive_scanrequires both an associative operator and an initial valueinit. When the input and output sequences are the same, the scan is performed in-place.Results are not deterministic for pseudo-associative operators (e.g., addition of floating-point types). Results for pseudo-associative operators may vary from run to run.
The following code snippet demonstrates how to use
inclusive_scanwith initial value:int data[10] = {-5, 0, 2, -3, 2, 4, 0, -1, 2, 8}; ::cuda::maximum<int> binary_op; thrust::inclusive_scan(data, data + 10, data, 1, ::cuda::maximum<>{}); // in-place scan // data is now {1, 1, 2, 2, 2, 4, 4, 4, 4, 8}
- Parameters:
first – The beginning of the input sequence.
last – The end of the input sequence.
result – The beginning of the output sequence.
init – The initial value.
binary_op – The associative operator used to ‘sum’ values.
- Template Parameters:
InputIterator – is a model of Input Iterator and
InputIterator'svalue_typeis convertible toOutputIterator'svalue_type.OutputIterator – is a model of Output Iterator and
OutputIterator'svalue_typeis convertible to bothAssociativeOperator'sfirst and second argument type.T – is convertible to
OutputIterator'svalue_type.AssociativeOperator – The function’s return type must be convertible to
OutputIterator'svalue_type.
- Returns:
The end of the output sequence.
- Pre:
firstmay equalresultbut the range[first, last)and the range[result, result + (last - first))shall not overlap otherwise.