/// Goldilocks field arithmetic (canonical form).
#[allow(dead_code)]
pub const GOLDILOCKS: &str = include_str!("shaders/goldilocks.wgsl");

/// Fixed-point arithmetic over Goldilocks (scale = 2^16).
#[allow(dead_code)]
pub const FIXED_POINT: &str = include_str!("shaders/fixed_point.wgsl");

/// Grammar mask for beam search (K=32 beams ร— VOCAB=140 tokens).
#[allow(dead_code)]
pub const GRAMMAR_MASK: &str = include_str!("shaders/grammar_mask.wgsl");

Local Graph