vyre-libs 0.6.3

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
12
13
14
//! Data-parallel generic AST building blocks.

/// Shared AST node layout definitions.
pub mod node;
/// Shunting-yard AST extraction, gated with the C parser surface it depends on.
#[cfg(feature = "c-parser")]
pub mod shunting;

/// Parallel Prefix-Scan binding map.
#[cfg(feature = "c-parser")]
pub mod binding;
/// Parallel basic-block metadata for structured control flow.
#[cfg(feature = "c-parser")]
pub mod blocks;