weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg(any(test, feature = "cpu-parity"))]
//! Reference-only reference oracles for Weir parity and conformance.
//!
//! Production dataflow execution should build a `weir::*` Program and dispatch
//! through a concrete Vyre GPU backend. These wrappers are the only supported
//! CPU reference boundary for tests, corpus gates, fuzzers, and release
//! evidence. Keeping every oracle call behind this module makes CPU execution
//! visible, auditable, and impossible to confuse with a production path.

pub mod bitset;
pub mod graph;
pub mod summary;