uninitialized_copy
#
Overloads#
uninitialized_copy(exec, first, last, result)
#
-
template<typename DerivedPolicy, typename InputIterator, typename ForwardIterator>
ForwardIterator thrust::uninitialized_copy( - const thrust::detail::execution_policy_base<DerivedPolicy> &exec,
- InputIterator first,
- InputIterator last,
- ForwardIterator result,
In
thrust
, the functionthrust::device_new
allocates memory for an object and then creates an object at that location by calling a constructor. Occasionally, however, it is useful to separate those two operations. If each iterator in the range[result, result + (last - first))
points to uninitialized memory, thenuninitialized_copy
creates a copy of[first, last)
in that range. That is, for each iteratori
in the input,uninitialized_copy
creates a copy of*i
in the location pointed to by the corresponding iterator in the output range byForwardIterator's
value_type's
copy constructor with *i as its argument.The algorithm’s execution is parallelized as determined by
exec
.The following code snippet demonstrates how to use
uninitialized_copy
to initialize a range of uninitialized memory using thethrust::device
execution policy for parallelization:#include <thrust/uninitialized_copy.h> #include <thrust/device_malloc.h> #include <thrust/device_vector.h> #include <thrust/execution_policy.h> struct Int { __host__ __device__ Int(int x) : val(x) {} int val; }; ... const int N = 137; Int val(46); thrust::device_vector<Int> input(N, val); thrust::device_ptr<Int> array = thrust::device_malloc<Int>(N); thrust::uninitialized_copy(thrust::device, input.begin(), input.end(), array); // Int x = array[i]; // x.val == 46 for all 0 <= i < N
See also
See also
See also
See also
- Parameters:
exec – The execution policy to use for parallelization.
first – The first element of the input range to copy from.
last – The last element of the input range to copy from.
result – The first element of the output range to copy to.
- Template Parameters:
DerivedPolicy – The name of the derived execution policy.
InputIterator – is a model of Input Iterator.
ForwardIterator – is a model of Forward Iterator,
ForwardIterator
is mutable, andForwardIterator's
value_type
has a constructor that takes a single argument whose type isInputIterator's
value_type
.
- Returns:
An iterator pointing to the last element of the output range.
- Pre:
first
may equalresult
, but the range[first, last)
and the range[result, result + (last - first))
shall not overlap otherwise.
uninitialized_copy(first, last, result)
#
-
template<typename InputIterator, typename ForwardIterator>
ForwardIterator thrust::uninitialized_copy( - InputIterator first,
- InputIterator last,
- ForwardIterator result,
In
thrust
, the functionthrust::device_new
allocates memory for an object and then creates an object at that location by calling a constructor. Occasionally, however, it is useful to separate those two operations. If each iterator in the range[result, result + (last - first))
points to uninitialized memory, thenuninitialized_copy
creates a copy of[first, last)
in that range. That is, for each iteratori
in the input,uninitialized_copy
creates a copy of*i
in the location pointed to by the corresponding iterator in the output range byForwardIterator's
value_type's
copy constructor with *i as its argument.The following code snippet demonstrates how to use
uninitialized_copy
to initialize a range of uninitialized memory.#include <thrust/uninitialized_copy.h> #include <thrust/device_malloc.h> #include <thrust/device_vector.h> struct Int { __host__ __device__ Int(int x) : val(x) {} int val; }; ... const int N = 137; Int val(46); thrust::device_vector<Int> input(N, val); thrust::device_ptr<Int> array = thrust::device_malloc<Int>(N); thrust::uninitialized_copy(input.begin(), input.end(), array); // Int x = array[i]; // x.val == 46 for all 0 <= i < N
See also
See also
See also
See also
- Parameters:
first – The first element of the input range to copy from.
last – The last element of the input range to copy from.
result – The first element of the output range to copy to.
- Template Parameters:
InputIterator – is a model of Input Iterator.
ForwardIterator – is a model of Forward Iterator,
ForwardIterator
is mutable, andForwardIterator's
value_type
has a constructor that takes a single argument whose type isInputIterator's
value_type
.
- Returns:
An iterator pointing to the last element of the output range.
- Pre:
first
may equalresult
, but the range[first, last)
and the range[result, result + (last - first))
shall not overlap otherwise.