catgrad/stdlib/
mod.rs

1//! Standard library of declarations and definitions for catgrad's `lang` category.
2
3// Actual definitions and the `to_load_ops` helper.
4mod stdlib_definitions;
5pub use stdlib_definitions::{stdlib, to_load_ops};
6
7// The [`Module`] helper for creating language definitions
8mod module;
9pub use module::{FnModule, Module};
10
11// Basic ops like reshape, transpose, matmul
12pub mod ops;
13
14// Neural network layers (e.g., layernorm, sigmoid, matmul)
15pub mod nn;