vyre-foundation 0.4.1

Foundation layer: IR, type system, memory model, wire format. Zero application semantics. Part of the vyre GPU compiler.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Dispatch surface — dialect lookup, extern op registry, extension hooks.
//!
//! Audit cleanup A12 (2026-04-30): grouped from `vyre-foundation/src/`
//! root scatter.

/// Dialect → backend-impl `dialect_lookup::DialectLookup` table.
pub mod dialect_lookup;
/// Inventory-registered extension hooks (`OpaqueExprResolver`,
/// `OpaqueNodeResolver`, etc).
pub mod extension;
/// External op factory registry.
pub mod extern_registry;