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
//! Host-side IR engine helpers that do not depend on a GPU runtime.
//!
//! These helpers build deterministic host-side input structures used around
//! IR programs. wgpu-owned engines live in the `vyre-wgpu` crate.

/// Prefix-array builders used before scan-style IR dispatch.
pub mod prefix;
/// Token-aware match filtering helpers.
pub mod token_match_filter;

#[cfg(test)]
mod tests;