18 releases (breaking)

0.13.0 Apr 12, 2024
0.12.1 Feb 1, 2024
0.12.0 Jan 31, 2024
0.11.1 Dec 4, 2023
0.1.0 Jul 27, 2022

#323 in Machine learning

Download history 2132/week @ 2024-01-03 1662/week @ 2024-01-10 1288/week @ 2024-01-17 1354/week @ 2024-01-24 1318/week @ 2024-01-31 1107/week @ 2024-02-07 1184/week @ 2024-02-14 1175/week @ 2024-02-21 1176/week @ 2024-02-28 1206/week @ 2024-03-06 1180/week @ 2024-03-13 3809/week @ 2024-03-20 4391/week @ 2024-03-27 2758/week @ 2024-04-03 2740/week @ 2024-04-10 3219/week @ 2024-04-17

13,909 downloads per month
Used in 17 crates (8 directly)

MIT/Apache

1MB
16K SLoC

Burn Tensor

Burn Tensor Library

Current Crates.io Version license

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.

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.5–5MB
~85K SLoC