Expand description
This crate contains strided dense tensor implementations.
Tensors are defined as a contiguous piece of memory, the data array, which is interpreted using its stride information.
Re-exports§
pub use tensor::Tensor;
pub use tensor::MatView;
pub use tensor::MatViewMut;
pub use tensor::MatOwned;
pub use tensor::VecView;
pub use tensor::VecViewMut;
pub use tensor::VecOwned;
Modules§
- array_
like - This module is a simple workaround around the fact that arrays don’t implement Copy or Deref (even though in practice they are). This enables asking for arrays as a generic bound
- errors
- Error type for sprs
- tensor
Enums§
- Storage
Order - Describe the storage order of a matrix.