vyre-primitives 0.4.1

Compositional primitives for vyre — marker types (always on) + Tier 2.5 LEGO substrate (feature-gated per domain).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
//! `whitespace_classify_word` — word-at-a-time whitespace classification
//! emitting a per-word bitmap of "is-whitespace" lanes.
//!
//! Op id: `vyre-primitives::parsing::whitespace_classify_word`. Soundness:
//! `Exact` over the JSON / CSV / structural-parser whitespace set
//! `{0x20 SP, 0x09 TAB, 0x0A LF, 0x0D CR}`. The CPU reference at the
//! bottom of this file is the contract; the GPU `Program` matches it
//! lane-for-lane.
//!
//! ## Why it matters
//!
//! Every structural parser (simdjson-style JSON, CSV, HTTP header, protobuf
//! text-format, INI, YAML) starts with a whitespace-skip pass that compresses
//! N input bytes down to N/k structural bytes. The bottleneck on GPU is the
//! per-byte branch — naive `if (c == ' ' || c == '\t' || ...) skip` collapses
//! warp efficiency the moment the input has mixed structure.
//!
//! The fix is the simdjson trick: load a whole word (4 bytes per u32 here),
//! compare every lane to every whitespace value in parallel using bitmask
//! arithmetic, OR-reduce the 4 bitmaps into one 4-bit mask per word, and
//! emit the bitmap. A prefix-scan compacts the non-whitespace bytes into
//! a dense output. This module ships the classify half consumed by
//! `stream_compact`.
//!
//! ## Wire layout
//!
//! Inputs:
//!   - `bytes_in` — packed u32 stream where each u32 holds 4 little-endian
//!     bytes (byte 0 in bits 0..7, byte 1 in 8..15, etc). The host is
//!     responsible for padding the final word with non-whitespace bytes
//!     (0xFF is canonical) so the classifier doesn't emit spurious skip
//!     bits past the actual end-of-input.
//!
//! Outputs:
//!   - `whitespace_mask_out` — one u32 per input word. Low 4 bits are the
//!     per-lane "is-whitespace" mask: bit 0 = byte 0, bit 1 = byte 1, etc.
//!     The high 28 bits are zero and remain available to wider-lane
//!     variants.
//!
//! ## Why the bitmask and not a per-byte branch
//!
//! Per-byte branches force the warp into 4-way divergence on every word.
//! The bitmask approach uses pure arithmetic — no branches, every lane
//! does the same work, GPU throughput stays at peak.

use std::sync::Arc;

use vyre_foundation::ir::model::expr::Ident;
use vyre_foundation::ir::{BufferAccess, BufferDecl, DataType, Expr, Node, Program};

/// Canonical op id.
pub const OP_ID: &str = "vyre-primitives::parsing::whitespace_classify_word";

/// Canonical binding index for the input byte stream.
pub const BINDING_BYTES_IN: u32 = 0;
/// Canonical binding index for the output bitmap.
pub const BINDING_WHITESPACE_MASK_OUT: u32 = 1;

/// JSON / CSV / structural whitespace set: SP, TAB, LF, CR.
const WS_SP: u32 = 0x20;
const WS_TAB: u32 = 0x09;
const WS_LF: u32 = 0x0A;
const WS_CR: u32 = 0x0D;

/// Build the IR `Program` that classifies whitespace word-by-word.
///
/// One thread per word. Each thread:
///   1. Loads `bytes_in[gid]` as a u32 holding 4 bytes.
///   2. For each of the 4 byte lanes, computes whether the byte equals one
///      of {SP, TAB, LF, CR} via subtract-and-zero-detect arithmetic
///      (no branches).
///   3. Packs the 4 per-lane booleans into a 4-bit mask in the low bits of
///      one u32, stores at `whitespace_mask_out[gid]`.
///
/// `word_count` is the number of u32 words in `bytes_in`. Workgroup size
/// is fixed at 256 lanes.
#[must_use]
pub fn whitespace_classify_word(word_count: u32) -> Program {
    let body = vec![
        Node::let_bind("word_idx", Expr::InvocationId { axis: 0 }),
        Node::if_then(
            Expr::lt(Expr::var("word_idx"), Expr::u32(word_count)),
            vec![
                Node::let_bind("word", Expr::load("bytes_in", Expr::var("word_idx"))),
                // Extract each byte lane.
                Node::let_bind("b0", Expr::bitand(Expr::var("word"), Expr::u32(0xFF))),
                Node::let_bind(
                    "b1",
                    Expr::bitand(Expr::shr(Expr::var("word"), Expr::u32(8)), Expr::u32(0xFF)),
                ),
                Node::let_bind(
                    "b2",
                    Expr::bitand(Expr::shr(Expr::var("word"), Expr::u32(16)), Expr::u32(0xFF)),
                ),
                Node::let_bind(
                    "b3",
                    Expr::bitand(Expr::shr(Expr::var("word"), Expr::u32(24)), Expr::u32(0xFF)),
                ),
                // Per-lane is-whitespace booleans (returned as bool by `eq`).
                Node::let_bind(
                    "ws0",
                    Expr::or(
                        Expr::or(
                            Expr::eq(Expr::var("b0"), Expr::u32(WS_SP)),
                            Expr::eq(Expr::var("b0"), Expr::u32(WS_TAB)),
                        ),
                        Expr::or(
                            Expr::eq(Expr::var("b0"), Expr::u32(WS_LF)),
                            Expr::eq(Expr::var("b0"), Expr::u32(WS_CR)),
                        ),
                    ),
                ),
                Node::let_bind(
                    "ws1",
                    Expr::or(
                        Expr::or(
                            Expr::eq(Expr::var("b1"), Expr::u32(WS_SP)),
                            Expr::eq(Expr::var("b1"), Expr::u32(WS_TAB)),
                        ),
                        Expr::or(
                            Expr::eq(Expr::var("b1"), Expr::u32(WS_LF)),
                            Expr::eq(Expr::var("b1"), Expr::u32(WS_CR)),
                        ),
                    ),
                ),
                Node::let_bind(
                    "ws2",
                    Expr::or(
                        Expr::or(
                            Expr::eq(Expr::var("b2"), Expr::u32(WS_SP)),
                            Expr::eq(Expr::var("b2"), Expr::u32(WS_TAB)),
                        ),
                        Expr::or(
                            Expr::eq(Expr::var("b2"), Expr::u32(WS_LF)),
                            Expr::eq(Expr::var("b2"), Expr::u32(WS_CR)),
                        ),
                    ),
                ),
                Node::let_bind(
                    "ws3",
                    Expr::or(
                        Expr::or(
                            Expr::eq(Expr::var("b3"), Expr::u32(WS_SP)),
                            Expr::eq(Expr::var("b3"), Expr::u32(WS_TAB)),
                        ),
                        Expr::or(
                            Expr::eq(Expr::var("b3"), Expr::u32(WS_LF)),
                            Expr::eq(Expr::var("b3"), Expr::u32(WS_CR)),
                        ),
                    ),
                ),
                // Pack the 4 booleans into one u32 with bits 0..3 set.
                Node::let_bind(
                    "bit0",
                    Expr::select(Expr::var("ws0"), Expr::u32(1), Expr::u32(0)),
                ),
                Node::let_bind(
                    "bit1",
                    Expr::select(Expr::var("ws1"), Expr::u32(2), Expr::u32(0)),
                ),
                Node::let_bind(
                    "bit2",
                    Expr::select(Expr::var("ws2"), Expr::u32(4), Expr::u32(0)),
                ),
                Node::let_bind(
                    "bit3",
                    Expr::select(Expr::var("ws3"), Expr::u32(8), Expr::u32(0)),
                ),
                Node::let_bind(
                    "mask",
                    Expr::bitor(
                        Expr::bitor(Expr::var("bit0"), Expr::var("bit1")),
                        Expr::bitor(Expr::var("bit2"), Expr::var("bit3")),
                    ),
                ),
                Node::store(
                    "whitespace_mask_out",
                    Expr::var("word_idx"),
                    Expr::var("mask"),
                ),
            ],
        ),
    ];

    let buffers = vec![
        BufferDecl::storage(
            "bytes_in",
            BINDING_BYTES_IN,
            BufferAccess::ReadOnly,
            DataType::U32,
        )
        .with_count(word_count),
        BufferDecl::storage(
            "whitespace_mask_out",
            BINDING_WHITESPACE_MASK_OUT,
            BufferAccess::ReadWrite,
            DataType::U32,
        )
        .with_count(word_count),
    ];

    let entry = vec![Node::Region {
        generator: Ident::from(OP_ID),
        source_region: None,
        body: Arc::new(body),
    }];
    Program::wrapped(buffers, [256, 1, 1], entry)
}

/// Returns true if `byte` is one of {SP, TAB, LF, CR}. Inlined into the
/// CPU reference and the per-byte fixture builders.
#[must_use]
#[inline]
pub const fn is_structural_whitespace(byte: u8) -> bool {
    matches!(byte, 0x20 | 0x09 | 0x0A | 0x0D)
}

/// CPU reference. Returns the per-word whitespace bitmaps for the input
/// byte stream (already packed 4 bytes per u32, little-endian). Matches
/// the GPU `Program` lane-for-lane.
#[must_use]
pub fn whitespace_classify_word_cpu(words_in: &[u32]) -> Vec<u32> {
    let mut out = Vec::with_capacity(words_in.len());
    whitespace_classify_word_cpu_into(words_in, &mut out);
    out
}

/// CPU reference into caller-owned output storage.
///
/// Clears `out`, then reuses its capacity.
pub fn whitespace_classify_word_cpu_into(words_in: &[u32], out: &mut Vec<u32>) {
    out.clear();
    out.reserve(words_in.len());
    for word in words_in {
        let bytes = [
            (*word & 0xFF) as u8,
            ((*word >> 8) & 0xFF) as u8,
            ((*word >> 16) & 0xFF) as u8,
            ((*word >> 24) & 0xFF) as u8,
        ];
        let mut mask = 0u32;
        for (lane, byte) in bytes.iter().enumerate() {
            if is_structural_whitespace(*byte) {
                mask |= 1u32 << lane;
            }
        }
        out.push(mask);
    }
}

/// Pack 4 bytes into one little-endian u32 word. Helper for tests +
/// host-side fixture building.
#[must_use]
#[inline]
pub const fn pack_bytes_le(b0: u8, b1: u8, b2: u8, b3: u8) -> u32 {
    (b0 as u32) | ((b1 as u32) << 8) | ((b2 as u32) << 16) | ((b3 as u32) << 24)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn classify_all_non_whitespace_emits_zero_mask() {
        let words = vec![pack_bytes_le(b'a', b'b', b'c', b'd')];
        assert_eq!(whitespace_classify_word_cpu(&words), vec![0]);
    }

    #[test]
    fn classify_all_whitespace_emits_full_4_bit_mask() {
        let words = vec![pack_bytes_le(b' ', b'\t', b'\n', b'\r')];
        assert_eq!(whitespace_classify_word_cpu(&words), vec![0b1111]);
    }

    #[test]
    fn classify_mixed_word_marks_correct_lanes() {
        // a SP b TAB → bits 1 and 3 set → 0b1010
        let words = vec![pack_bytes_le(b'a', b' ', b'b', b'\t')];
        assert_eq!(whitespace_classify_word_cpu(&words), vec![0b1010]);
    }

    #[test]
    fn classify_every_per_lane_position_independently() {
        // Set whitespace in just one lane each, verify the bit is in the
        // right position.
        for lane in 0..4u32 {
            let mut bytes = [b'x', b'x', b'x', b'x'];
            bytes[lane as usize] = b' ';
            let word = pack_bytes_le(bytes[0], bytes[1], bytes[2], bytes[3]);
            let result = whitespace_classify_word_cpu(&[word]);
            assert_eq!(
                result[0],
                1u32 << lane,
                "lane {lane} whitespace must set bit {lane}"
            );
        }
    }

    #[test]
    fn classify_rejects_close_byte_values_that_are_not_whitespace() {
        // 0x21 (just past SP), 0x08 (just before TAB), 0x0B (between LF and
        // CR), 0x0E (just past CR) — all NOT whitespace by the structural
        // parser definition.
        let words = vec![pack_bytes_le(0x21, 0x08, 0x0B, 0x0E)];
        assert_eq!(
            whitespace_classify_word_cpu(&words),
            vec![0],
            "values adjacent to but not exactly the whitespace set must NOT classify as ws"
        );
    }

    #[test]
    fn classify_does_not_match_unicode_whitespace() {
        // U+00A0 (non-breaking space), U+2003 (em space) — NOT in the
        // structural-parser set. Adjusting that set is a wire-format-visible
        // change and this test enforces the contract.
        let words = vec![pack_bytes_le(0xA0, 0xC2, 0xE2, 0x80)];
        assert_eq!(
            whitespace_classify_word_cpu(&words),
            vec![0],
            "structural-parser whitespace is ASCII only by contract"
        );
    }

    #[test]
    fn classify_handles_long_input_byte_for_byte() {
        // Build 64 words of alternating SP / 'x' (one in every other lane
        // is whitespace). Every word should have bits 0 and 2 set.
        let words = vec![pack_bytes_le(b' ', b'x', b' ', b'x'); 64];
        let masks = whitespace_classify_word_cpu(&words);
        assert_eq!(masks.len(), 64);
        for mask in &masks {
            assert_eq!(*mask, 0b0101);
        }
    }

    #[test]
    fn classify_empty_input_emits_empty_output() {
        let masks = whitespace_classify_word_cpu(&[]);
        assert!(masks.is_empty());
    }

    #[test]
    fn classify_does_not_set_high_bits() {
        // High 28 bits MUST be zero — they're reserved for lane widening.
        // Adjusting this is a wire-format-visible change.
        let words = vec![pack_bytes_le(b' ', b' ', b' ', b' ')];
        let masks = whitespace_classify_word_cpu(&words);
        assert_eq!(
            masks[0] >> 4,
            0,
            "high 28 bits must remain zero (reserved for lane widening)"
        );
    }

    #[test]
    fn pack_bytes_le_is_canonical() {
        assert_eq!(pack_bytes_le(0x78, 0x56, 0x34, 0x12), 0x1234_5678);
        assert_eq!(pack_bytes_le(0xFF, 0, 0, 0), 0xFF);
        assert_eq!(pack_bytes_le(0, 0xFF, 0, 0), 0xFF00);
    }

    #[test]
    fn classify_into_reuses_output_capacity() {
        let words = [pack_bytes_le(b' ', b'x', b'\n', b'y')];
        let mut out = Vec::with_capacity(32);
        let before = out.capacity();
        whitespace_classify_word_cpu_into(&words, &mut out);
        assert_eq!(out, vec![0b0101]);
        assert_eq!(out.capacity(), before);
    }

    #[test]
    fn build_program_returns_well_formed_program() {
        let program = whitespace_classify_word(64);
        assert_eq!(program.buffers().len(), 2, "bytes_in + whitespace_mask_out");
        assert_eq!(program.workgroup_size(), [256, 1, 1]);
    }

    #[test]
    fn build_program_is_deterministic_across_calls() {
        let p1 = whitespace_classify_word(128);
        let p2 = whitespace_classify_word(128);
        assert_eq!(p1.buffers().len(), p2.buffers().len());
        assert_eq!(p1.workgroup_size(), p2.workgroup_size());
    }

    #[test]
    fn op_id_is_canonical_and_stable() {
        assert_eq!(OP_ID, "vyre-primitives::parsing::whitespace_classify_word");
    }

    #[test]
    fn binding_indices_are_canonical_and_stable() {
        assert_eq!(BINDING_BYTES_IN, 0);
        assert_eq!(BINDING_WHITESPACE_MASK_OUT, 1);
    }

    #[test]
    fn is_structural_whitespace_matches_only_the_canonical_four() {
        for byte in 0u8..=255 {
            let expected = matches!(byte, 0x20 | 0x09 | 0x0A | 0x0D);
            assert_eq!(
                is_structural_whitespace(byte),
                expected,
                "byte 0x{byte:02X} structural-ws classification"
            );
        }
    }
}