5 releases (breaking)

new 0.7.0 Apr 12, 2024
0.6.0 Mar 31, 2024
0.4.0 Feb 8, 2024
0.3.0 Jan 23, 2024
0.1.0 Dec 31, 2023

#379 in Machine learning

Download history 162/week @ 2023-12-29 201/week @ 2024-01-05 46/week @ 2024-01-12 60/week @ 2024-01-19 32/week @ 2024-01-26 71/week @ 2024-02-02 76/week @ 2024-02-09 97/week @ 2024-02-16 173/week @ 2024-02-23 171/week @ 2024-03-01 117/week @ 2024-03-08 162/week @ 2024-03-15 217/week @ 2024-03-22 883/week @ 2024-03-29 77/week @ 2024-04-05

1,366 downloads per month
Used in 7 crates (6 directly)

MIT/Apache

225KB
5K SLoC

rten-tensor

rten-tensor is the foundational library that provides multi-dimensional arrays used by RTen. It is similar to ndarray but tailored for use in the RTen library.


lib.rs:

rten_tensor provides multi-dimensional arrays, commonly referred to as tensors in a machine learning context.

Each tensor is a combination of data and a layout. The data can be owned, borrowed or mutably borrowed. This is analagous to Vec<T>, &[T] and &mut [T] for 1D arrays. The layout determines the number of dimensions (the rank), the size of each dimension, and the strides (gap between successive indices along a given dimension).

Key types and traits

The base type for all tensors is [TensorBase]. This is not normally used directly but instead via a type alias, depending on whether the number of dimensions (the rank) of the tensor is known at compile time or only at runtime, as well as whether the tensor owns, borrows or mutably borrows its data.

Rank Owned (like Vec<T>) Borrowed (like &[T]) Mutably borrowed
Static [NdTensor] [NdTensorView] [NdTensorViewMut]
Dynamic [Tensor] [TensorView] [TensorViewMut]

All tensors implement the [Layout] trait, which provide methods to query the shape, dimension count and strides of the tensor. Tensor views provide various methods for indexing, iterating, slicing and transforming them. The [AsView] trait provides access to these methods for owned and mutably borrowed tensors. Conceptually it is similar to how Deref allows accesing methods for &[T] on a Vec<T>. The preferred way to import the traits is via the prelude:

use rten_tensor::prelude::*;
use rten_tensor::NdTensor;

let tensor = NdTensor::from_data([2, 2], vec![1, 2, 3, 4]);

// Logs 1, 3, 2, 4.
for x in tensor.transposed().iter() {
  println!("{}", x);
}

Dependencies