Crates.io | ndtensor |
lib.rs | ndtensor |
version | 0.1.0 |
source | src |
created_at | 2024-04-13 20:48:05.011599 |
updated_at | 2024-04-24 22:14:57.179039 |
description | ndtensor is an n-dimensional tensor library for Rust. |
homepage | https://github.com/FL03/ndtensor/wiki |
repository | https://github.com/FL03/ndtensor |
max_upload_size | |
id | 1207816 |
size | 92,301 |
Welcome to ndtensor, a Rust library for n-dimensional tensors designed for flexibility and performance.
git clone https://github.com/FL03/ndtensor
extern crate ndtensor;
use ndtensor::Tensor;
fn main() -> Result<(), Box<dyn std::error::Error> {
let shape = (3, 3);
let tensor = Tensor::linspace(0f64, 8f64, 9).into_shape(shape)?;
println!("{:?}", tensor);
Ok(())
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.