vyre-libs 0.6.2

vyre Category A library ecosystem - pure-IR compositions over vyre-ops hardware primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Graph / AST buffer compositions (`docs/ops-catalog.md` ยง1).
//!
//! Host-side packed layout lives in [`vyre_foundation::vast`]. The programs
//! here are minimal GPU-facing slices of that contract.

pub mod ast_walk_postorder;
pub mod ast_walk_preorder;

pub use ast_walk_postorder::ast_walk_postorder;
pub use ast_walk_postorder::ast_walk_postorder_nodes;
pub use ast_walk_preorder::ast_walk_preorder;