vyre-reference 0.4.1

Pure-Rust CPU reference interpreter for vyre IR — byte-identical oracle for backend conformance and small-data fallback
Documentation
//! Standalone primitive-operation CPU references.
#![allow(missing_docs)]

/// docs
pub mod arith;
#[path = "dual_impls/bitwise/mod.rs"]
/// docs
pub mod bitwise;
/// docs
pub mod common;
/// docs
pub mod compare;
/// docs
pub mod hash;
/// docs
pub mod memory;
/// docs
pub mod scan;
/// docs
pub mod workgroup;
pub use common::{EvalError, ReferenceEvaluator};