//! 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};