dfdx 0.8.0

Ergonomic auto differentiation in Rust, with pytorch like apis.
Documentation

dfdx: strongly typed deep learning in Rust

Ergonomics & safety focused deep learning in Rust. Main features include:

  1. Const generic tensor library with tensors up to 4d!
  2. A large library of tensor operations (matrix multiplication, arithmetic, activation functions, etc).
  3. Safe & easy to use neural network building blocks.
  4. Standard deep learning optimizers such as Sgd and Adam.
  5. Reverse mode auto differentiation[1] implementation.
  6. Serialization to/from .npy and .npz for transferring models to/from python.

dfdx is on crates.io! Use by adding this to your Cargo.toml:

dfdx = "0.8.0"

See the documentation at docs.rs/dfdx.

[1] https://en.wikipedia.org/wiki/Automatic_differentiation#Reverse_accumulation

Design Goals

  1. Easy to use frontend interface.
  2. Easy to understand/maintain internals. Keep levels of indirection to a minimum.
  3. Check as much at compile time as possible (i.e. don't compile if something is not correct).
  4. Maximize performance.
  5. Keep internals as flexible (easy to change) as possible.
  6. Minimize unsafe code[1]
  7. Minimize Rc and RefCells used in internal code[2]

[1] Currently the only unsafe calls are for matrix multiplication, and instantiating large arrays directly on the heap.

[2] There is only 1 usage of RefCell in the nn::Dropout layer to make it's underlying rng easy to use. The only things that use Rc are tensors to store their data. Rc is used instead of Box to reduce allocations when tensors are cloned.

BLAS libraries

The matrixmultiply crate is the default BLAS library. You don't need to do download/install anything for this to work!

To link to the Intel MKL libraries (assuming you installed it already) enable one of the provided "mkl-*-*" features[1]:

  1. mkl-dynamic-iomp
  2. mkl-dynamic-seq
  3. mkl-static-iomp
  4. mkl-static-seq

Recommend dynamic for build times & executable size, and iomp for more cpu utilization!

Linking is currently tested & verified on the following platforms:

  • Windows
  • Linux
  • MacOS (need someone to help me test!)

Example:

# dynamic link to lp64 version of mkl with OpenMP threading libraries
# this will auto enable the "cblas" feature"
dfdx = { version = "...", features = ["mkl-dynamic-iomp"] }

See build.rs for more details.

[1] For those familiar with Intel MKL, you may notice lp64 and ilp64 are not listed. These are chosen based on the target_pointer_width value as detailed in build.rs.

Installing Intel MKL libraries

You will need to install Intel MKL on your own from this page. It's pretty easy!

build.rs will fail helpfully if you don't have the correct path/environment variables.

Features

  1. 👌 Simple Neural Networks API, completely type checked at compile time. See examples/regression.rs
type MLP = (
    (Linear<10, 32>, ReLU),
    (Linear<32, 32>, ReLU),
    (Linear<32, 2>, Tanh),
);

fn main() {
    let mlp: MLP = Default::default();
    let x: Tensor1D<10> = Tensor1D::zeros();
    let y /*: Tensor1D<2>*/ = mlp.forward(x);
    println!("{:?}", y);
    mlp.save("checkpoint.npz")?;
}
  1. 📈 Ergnomic & safe Optimizer API
let mut model: Model = ...
let mut sgd = Sgd::new(SgdConfig {
    lr: 1e-2,
    momentum: Some(Momentum::Nesterov(0.9))
});

let loss: Tensor0D<OwnedTape> = ...

// run backprop to get the gradients
let gradients = loss.backward();
sgd.update(&mut model, gradients);
  1. Tensors are backed by normal rust arrays, making it easy to access the underlying data!
let t0: Tensor0D = Tensor0D::zeros();
assert_eq!(t0.data(), &0.0);

let t1 /*: Tensor1D<3>*/ = Tensor1D::new([1.0, 2.0, 3.0]);
assert_eq!(t1.data(), &[1.0, 2.0, 3.0]);

let t2: Tensor2D<2, 3> = Tensor2D::ones();
assert_eq!(t2.data(), &[[1.0; 3]; 2]);
  1. 💡 Tensor sizes, operations, gradient computations all type checked at compile time
  2. 💪 Full power of rust compiler & llvm optimizations (because all shapes of arrays are known at compile time!)
  3. Minimal runtime costs - there are no Rc/Refcells used in this implementation!

Fun/notable implementation details

Module

pub trait Module<Input>: Default + CanUpdateWithGrads {
    type Output;
    fn forward(&self, input: Input) -> Self::Output;
}

From this flexible trait we get:

  1. Single & batched inputs (just have multiple impls!)
  2. Update with gradients
  3. Multiple inputs/outputs (multi-headed modules, or rnns)
  4. Behavior different when tape is present or not (not the .train()/.eval() behavior present in other libraries!).

Tuples represent feedforward (a.k.a sequential) modules

Since we can implement traits for tuples, which is not possible in other languages AFAIK, they provide a very nice frontend for sequentially executing modules.

// no idea why you would do this, but you could!
let model: (ReLU, Sigmoid, Tanh) = Default::default();
let model: (Linear<10, 5>, Tanh) = Default::default();

How implementing Module for a 2-tuple looks:

impl<Input, A, B> Module<Input> for (A, B)
where
    Input: Tensor,
    A: Module<Input>,        // A is a module that takes Input
    B: Module<A::Output>,    // B is a module that takes A's Output
{
    type Output = B::Output; // the output of this is B's Output
    fn forward(&self, x: Input) -> Self::Output {
        let x = self.0.forward(x);
        let x = self.1.forward(x);
        x
    }
}

We've implemented Module for Tuples up to 6 elements, but you can arbitrarily nest them!

No Rc<RefCells<T>> used - Gradient tape is not kept behind a cell!

Other implementations may store a reference to the gradient tape directly on tensors, which requires mutating tensors or using Rc/Refcells all other the place.

We've figured out an elegant way to avoid this, reducing references and dynamic borrow checks to 0!

Since all operations result in exactly 1 child, we can always move the gradient tape to the child of the last operation. Additionally, no model parameters (all tensors) will ever own the gradient tape because they will never be the result of any operation. This means we know exactly which tensor owns the gradient tape, and the tensors that have it will always be intermediate results that don't need to be maintained across gradient computation.

All of this together gives users unprecedented control/precision over what tensors are recorded on the gradient tape!

One advanced use case requires that tensors be re-used multiple times in a computation graph. This can be handled by duplicating the tensor, and manually moving the gradient tape around. See examples/multi_head.rs for an example.

Type checked backward

tl;dr: If you forget to include a call to trace() or traced(), the program won't compile!

-let pred = module.forward(x);
+let pred = module.forward(x.traced());
let loss = (&y - pred).square().mean();
let gradients = loss.backward();

Since we know exactly what tensors own the gradient tape, we can require the tensor passed into .backward() to own the gradient tape! And further, we can require it be moved into .backward(), so it can destruct the tape and construct the gradients!

All of this can be checked at compile time 🎉

pub fn backward<T: Tensor<Tape = OwnedTape>>(t: T) -> Gradients {
    let (t, tape): (T::NoTape, OwnedTape) = t.split_tape();
    tape.0.backward(&t)
}

Recursive trait definitions for CPU Device

Our src/devices backend for computing operations on the CPU is built using recursive trait definitions.

The main idea behind this is similar to recursion or induction proofs. First we specify the base trait, and then we specify the recursive trait.

A simple example is counting the number of elements in an arbitrarily nested array at compile time.

First we specify the trait we want to do this:

pub trait CountElements {
    const NUM_ELEMENTS: usize;
}

Now for the base case (assuming these will be arrays of floats), is just a single floating point number:

impl CountElements for f32 {
    const NUM_ELEMENTS: usize = 1;
}

And finally the recursive trait:

impl<T: CountElements, const M: usize> CountElements for [T; M] {
    const NUM_ELEMENTS: usize = M * T::NUM_ELEMENTS;
}

Notice the restriction on T also implementing CountElements. This allows us to use T::NUM_ELEMENTS in the trait body.

Another few powerful things recursive traits can do:

  1. Map all elements of arbitarily nested arrays using a function
  2. Add two arrays together
  3. Reduce an array to one number
  4. Even more!

Encourage you to check out all the code in src/devices!

📄 Validated against pytorch

All functions & operations are tested against behavior shown by similar code in pytorch.

License

Dual-licensed to be compatible with the Rust project.

Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 or the MIT license http://opensource.org/licenses/MIT, at your option. This file may not be copied, modified, or distributed except according to those terms.