vyre-driver-wgpu 0.6.5

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
//! Tiered runtime cache primitives.

pub(crate) mod pipeline;

pub use lru::AccessTracker;
pub use tiered_cache::{AccessStats, CacheEntry, CacheError, CacheTier, LruPolicy, TieredCache};

/// LRU tracking.
pub mod lru;
/// Multi-tier cache storage, policy, and errors.
pub mod tiered_cache;

/// Cache test suites.
#[cfg(test)]
pub mod tests;