vyre-conform 0.1.0

Conformance suite for vyre backends — proves byte-identical output to CPU reference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Workgroup-coordinated sequential primitive operation specifications.
//!
//! These ops are the moat — workgroup-local SRAM-resident data structures
//! (stack, queue, hashmap, state machine, etc.) that no other GPU compute
//! stack ships as first-class primitives. Each spec provides a CPU reference
//! oracle, algebraic laws, boundary values, and WGSL source integration
//! for the 8-layer conformance gauntlet.

/// Bounded LIFO stack for workgroup-local SRAM.
#[path = "workgroup/stack.rs"]
pub mod stack;

/// Re-export of the workgroup stack spec surface.
pub use stack::{vyre_op, ADVERSARIAL, KAT, VYRE_OP_METADATA};