torch.Tensor.copy_¶
- Tensor.copy_(src, non_blocking=False) Tensor ¶
Copies the elements from
src
intoself
tensor and returnsself
.The
src
tensor must be broadcastable with theself
tensor. It may be of a different data type or reside on a different device.