range
MISSING
(1) | |
(2) | |
(3) | |
(4) | |
(5) |
-
COMPUTECPP_DEV
Parameters:-
const detail::index_array_operators<3, cl::sycl::range> &
indexArray
-
-
Default constructor. Initialize the range to 1. Equivalent to range<3>(1, 1, 1)
-
(default)
Create a copy of a range.
Parameters:-
const cl::sycl::range<3> &
rhs
: The range to copy
-
-
Parameters:-
const detail::index_array &
indexArray
-
-
Create a 3 dimension range initialized to dim1 for the first dimension, dim2 for the second and dim3 for the third.
Parameters:-
size_t
dim1
: The size of the first dimension. -
size_t
dim2
: The size of the second dimension. -
size_t
dim3
: The size of the third dimension.
-