pub type Tensor = ArcArray<f32, IxDyn>;
The core tensor type of this crate.
We’re using an ArcArray so reshaping is free.
struct Tensor { /* private fields */ }