torch.Tensor.as_subclass
- Tensor.as_subclass(cls) Tensor
Makes a
cls
instance with the same data pointer asself
. Changes in the output mirror changes inself
, and the output stays attached to the autograd graph.cls
must be a subclass ofTensor
.