vyre 0.1.0

GPU bytecode condition engine
Documentation
1
2
3
4
5
6
7
8
9
//! Bytecode instructions, programs, and safe builders.

mod builder;
mod instruction;
mod program;

pub use builder::ProgramBuilder;
pub use instruction::{Instruction, Opcode};
pub use program::{Program, BYTECODE_MAGIC};