| Crates.io | rust-tensors |
| lib.rs | rust-tensors |
| version | 0.4.0 |
| created_at | 2025-02-06 19:53:18.842819+00 |
| updated_at | 2025-11-29 01:02:15.910156+00 |
| description | A library to use n-dimensional arrays. |
| homepage | |
| repository | https://github.com/Daedelus1/RustTensors |
| max_upload_size | |
| id | 1546028 |
| size | 33,460 |
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.
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.