pub trait Transpose {
type Output;
// Required method
fn transpose(&self) -> Self::Output;
}
Expand description
the trait denotes the ability to transpose a tensor
pub trait Transpose {
type Output;
// Required method
fn transpose(&self) -> Self::Output;
}
the trait denotes the ability to transpose a tensor