Skip to main content

vyre_driver_wgpu/runtime/
cache.rs

1//! Tiered runtime cache primitives.
2
3pub(crate) mod pipeline;
4
5pub use lru::AccessTracker;
6pub use tiered_cache::{AccessStats, CacheEntry, CacheError, CacheTier, LruPolicy, TieredCache};
7
8/// LRU tracking.
9pub mod lru;
10/// Multi-tier cache storage, policy, and errors.
11pub mod tiered_cache;
12
13/// Cache test suites.
14#[cfg(test)]
15pub mod tests;