topos 0.13.1

An autodiff compiler stack in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The core tier: the spec and its named readings.
//!
//! What the crate exists to do. [`payload`] is the element seam,
//! [`op`] the closed instruction set, [`graph`] the spec and the
//! state beside it, [`engine`] the readings that run it -- interpret,
//! lower, catalog. The tier is a folder, not a type: everything real
//! lives in the children.

pub(crate) mod engine;
pub(crate) mod graph;
pub(crate) mod op;
pub(crate) mod payload;