vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Shared test fixtures and harness for operation KATs.
//!
//! This module centralises the `Case` / `Cases` structs and the
//! `run_committed_kats` harness so that individual ops do not duplicate the
//! same serde definitions and test loops.

pub mod case;
pub mod test_harness;

pub use case::{Case, Cases};
pub use test_harness::{hex_to_bytes, run_committed_kats};