rust-tensors

Crates.iorust-tensors
lib.rsrust-tensors
version0.4.0
created_at2025-02-06 19:53:18.842819+00
updated_at2025-11-29 01:02:15.910156+00
descriptionA library to use n-dimensional arrays.
homepage
repositoryhttps://github.com/Daedelus1/RustTensors
max_upload_size
id1546028
size33,460
Daedelus (Daedelus1)

documentation

README

Rust Tensors

A lightweight, safe tensor library for Rust. This includes an interface to make any dimensional arrays (e.g., matrices, lists, triple-nested arrays, etc). There is no unsafe code and no non-test dependencies. This crate includes an implementation of a matrix and matrix address type, and you can use these to make your own tensors.

Usage

To use, simply add the following to your cargo.toml file:

[dependencies]
rust_tensors = "0.3.0"

This will allow you to use the traits to make your own arbitrary dimensional arrays.

Commit count: 19

cargo fmt