vyre-wgpu 0.1.0

wgpu backend for vyre IR — implements VyreBackend, owns GPU runtime, buffer pool, pipeline cache
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Layer 3 complete compute engines.
//!
//! Each engine is a self-contained GPU compute pipeline: structured input in,
//! compute passes on a real GPU backend, typed output back.

/// Adapter-limit helper for BFS queue sizing.
pub mod bfs_queue_slots_for_device;
/// Generic graph dataflow engines.
pub mod dataflow;
/// Recursive decode pipeline (base64, hex, url, unicode) with region management.
pub mod decode;
/// Block decompression pipeline (deflate, LZ4, zstd) over IR compositions.
pub mod decompress;
/// DFA pattern matching engine.
pub mod dfa;