vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Encode the stable IR wire model into `VIR0` bytes.

/// Encode a single expression payload.
pub use put_expr::put_expr;
/// Encode a single IR node payload.
pub use put_node::put_node;
/// Encode a length-prefixed node sequence.
pub use put_nodes::put_nodes;
/// Serialize a complete program into the wire format.
pub use to_wire::to_wire;

automod::dir!(pub "src/ir/serial/wire/encode");