topos 0.11.0

A tiny autograd engine for the GPU-poor, written in idiomatic Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod bf16;
mod differentiable;
mod elementary;
mod gemm;
mod layout;
mod shape;
mod storage;
mod tensor;
mod tensorial;

pub use bf16::Bf16;
pub use differentiable::Differentiable;
pub use elementary::{Elementary, MapOperation};
pub use gemm::GemmTask;
pub use shape::Shape;
pub use tensor::Tensor;
pub use tensorial::Tensorial;