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
15
16
17
18
//! Input generation: generators, archetypes, composers, and test materialization.

/// Reusable test-input shapes.
pub mod archetypes;
/// Global archetype registry for contributors.
pub mod archetypes_registry;
/// Composition strategies for multi-op chain generation.
pub mod composers;
/// Materialized Rust test file generation.
pub mod emit;
/// Input generators: boundary, edge case, exhaustive, random, pathological.
pub mod generators;
/// Input minimization for failing test cases.
pub mod minimize;
/// Reference-trust probe generators.
pub mod probes;
/// Progressive template loader for agent prompts.
pub mod templates;