Skip to content

Commit f642385

Browse files
authored
Fix call_origin call for copyto (#975)
1 parent c7b541c commit f642385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/dpnp_iface_manipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def copyto(dst, src, casting='same_kind', where=True):
254254
else:
255255
return dpnp_copyto(dst_desc, src_desc, where=where)
256256

257-
return call_origin(numpy.copyto, dst, src, casting, where)
257+
return call_origin(numpy.copyto, dst, src, casting, where, dpnp_inplace=True)
258258

259259

260260
def expand_dims(x1, axis):

0 commit comments

Comments
 (0)