torch.Tensor.copy_ — PyTorch 2.7 documentation (original) (raw)
Tensor.copy_(src, non_blocking=False) → Tensor¶
Copies the elements from src
into self
tensor and returnsself
.
The src
tensor must be broadcastablewith the self
tensor. It may be of a different data type or reside on a different device.
Parameters
src (Tensor) – the source tensor to copy from
non_blocking (bool) – if
True
and this copy is between CPU and GPU, the copy may occur asynchronously with respect to the host. For other cases, this argument has no effect.
To analyze traffic and optimize your experience, we serve cookies on this site. By clicking or navigating, you agree to allow our usage of cookies. As the current maintainers of this site, Facebook’s Cookies Policy applies. Learn more, including about available controls: Cookies Policy.