dpnp.copyto
- dpnp.copyto(dst, src, casting='same_kind', where=True)[source]
Copies values from one array to another, broadcasting as necessary.
For full documentation refer to
numpy.copyto
.Limitations
Input arrays are supported as
dpnp.ndarray
. Otherwise the function will be executed sequentially on CPU. Parametercasting
is supported only with default value"same_kind"
. Parameterwhere
is supported only with default valueTrue
. Shapes of input arrays are supported to be equal. Input array data types are limited by supported DPNP Data types.