Thrust
|
Fills a range with a sequence of numbers. More...
#include <thrust/detail/config.h>
#include <thrust/detail/execution_policy.h>
#include <thrust/detail/sequence.inl>
Go to the source code of this file.
Namespaces | |
thrust | |
thrust is the top-level namespace which contains all Thrust functions and types. | |
Functions | |
template<typename DerivedPolicy , typename ForwardIterator > | |
__host__ __device__ void | thrust::sequence (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last) |
template<typename ForwardIterator > | |
void | thrust::sequence (ForwardIterator first, ForwardIterator last) |
template<typename DerivedPolicy , typename ForwardIterator , typename T > | |
__host__ __device__ void | thrust::sequence (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last, T init) |
template<typename ForwardIterator , typename T > | |
void | thrust::sequence (ForwardIterator first, ForwardIterator last, T init) |
template<typename DerivedPolicy , typename ForwardIterator , typename T > | |
__host__ __device__ void | thrust::sequence (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last, T init, T step) |
template<typename ForwardIterator , typename T > | |
void | thrust::sequence (ForwardIterator first, ForwardIterator last, T init, T step) |
Fills a range with a sequence of numbers.