You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my case, I want an actual deep-copy. I would like to copy all data from ndarray A into ndarray B with the least codes. If we have a deep-copy interface, we do not need write
codes like this:
auto B = allocate_ndarray(A.shape, A.elem_shape, ...);
memcpy_d2d(B, A);
There're cases where users would want a deepcopy of an ndarray, so we can probably provide this as
in our C++ wrapper.
cc: @YuCrazing
The text was updated successfully, but these errors were encountered: