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
//! Primitive framing helpers shared by the wire encoder and decoder.

/// Wire-format magic and version constants.
pub use magic::{MAGIC, WIRE_FORMAT_VERSION};
/// Encode a checked `usize` length as a little-endian `u32`.
pub use put_len_u32::put_len_u32;
/// Encode a bounded UTF-8 string.
pub use put_string::put_string;
/// Encode a little-endian `u32`.
pub use put_u32::put_u32;
/// Encode one byte.
pub use put_u8::put_u8;

automod::dir!(pub "src/ir/serial/wire/framing");