//! Core module containing the tensor and storage implementations.
/// allocator module containing the memory management utilities.
/// tensor module containing the tensor and storage implementations.
/// serde module containing the serialization and deserialization utilities.
/// storage module containing the storage implementations.
/// view module containing the view implementations.
pub use crate;
pub use crateget_strides_from_shape;
pub use crate;
/// Type alias for a 1-dimensional tensor.
pub type Tensor1<T, A> = ;
/// Type alias for a 2-dimensional tensor.
pub type Tensor2<T, A> = ;
/// Type alias for a 3-dimensional tensor.
pub type Tensor3<T, A> = ;
/// Type alias for a 4-dimensional tensor.
pub type Tensor4<T, A> = ;
/// Type alias for a 2-dimensional tensor with CPU allocator.
pub type CpuTensor2<T> = ;