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. Parameter casting is supported only with default value "same_kind". Parameter where is supported only with default value True. Shapes of input arrays are supported to be equal. Input array data types are limited by supported DPNP Data types.