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
12
13
14
15
use vyre::ops::decode::{Base64Decode, HexDecode, UnicodeDecode, UrlDecode};

use super::assert_structural_spec;

#[test]
fn decode_ops_validate_lower_and_compose_non_empty_programs() {
    for spec in [
        &Base64Decode::SPEC,
        &HexDecode::SPEC,
        &UnicodeDecode::SPEC,
        &UrlDecode::SPEC,
    ] {
        assert_structural_spec(spec);
    }
}