tensr 0.1.3

A high-performance, cross-platform, multi-backend tensor/array library for Rust
Documentation
1
2
3
4
5
6
use crate::dimension::dim::Dimension;

pub struct Stride<DimType: Dimension> {
    offset: usize, // Offset cannot be negative
    strides: DimType,
}