22 releases (14 breaking)
0.15.0 | Oct 28, 2024 |
---|---|
0.13.2 | May 3, 2024 |
0.12.1 | Feb 1, 2024 |
0.11.1 | Dec 4, 2023 |
0.1.0 | Jul 27, 2022 |
#422 in Machine learning
7,081 downloads per month
Used in 33 crates
(10 directly)
1.5MB
26K
SLoC
Burn Tensor
Burn Tensor Library
This library provides multiple tensor implementations hidden behind an easy to use API that supports reverse mode automatic differentiation.
Features
- Flexible ✨
- CPU + GPU 🙏
- Multi-Threads 🚀
- Intuitive Usage 😌
- No Global State 🚫
- Multiple Backends 🦾
- Reverse Mode Autodiff 🔥
Backends
For now, three backends are implemented, and some more are planned.
- Pytorch using tch-rs
- 100% Rust backend using ndarray
- WGPU backend
- Candle backend
- Tensorflow using tensorflow-rust
- CuDNN using RustCUDAtensorflow-rust
- ...
Autodiff
Automatic differentiation is implemented as just another tensor backend without any global state. It's possible since we keep track of the order in which each operation as been executed and the tape is only created when calculating the gradients. To do so, each operation creates a new node which has a reference to its parent nodes. Therefore, creating the tape only requires a simple and efficient graph traversal algorithm.
let x = AutodiffTensor::from_tensor(x_ndarray);
let y = ADtodiffTensor::from_tensor(y_ndarray);
let z = x.matmul(&y);
let grads = z.backward();
let x_grad = x.grad(&grads);
let y_grad = y.grad(&grads);
Cuda
To run with CUDA set TORCH_CUDA_VERSION=cu121
.
Notes
This crate can be used alone without the entire burn stack and with only selected backends for smaller binaries.
Feature Flags
This crate can be used without the standard library (#![no_std]
) with alloc
by disabling
the default std
feature.
std
- enables the standard library.burn-tensor-testgen
- enables test macros for generating tensor tests.
Dependencies
~3–43MB
~653K SLoC