pub trait TensorLike where
    Self: Sized
{ fn f_to_device(&self, device: Device) -> Result<Self, TchError>; fn f_to_kind(&self, kind: Kind) -> Result<Self, TchError>; fn shallow_clone(&self) -> Self; fn to_device(&self, device: Device) -> Self { ... } fn to_kind(&self, kind: Kind) -> Self { ... } }

Required methods

Provided methods

Implementations on Foreign Types

Implementors