weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Cache for backend-resident fixed-point graph layouts.

mod cache;
mod entry;
mod retained;
mod stats;

#[cfg(test)]
mod tests;

pub use cache::FixedPointResidentGraphCache;
pub use stats::FixedPointResidentGraphCacheStats;

pub(crate) use retained::retained_graph_bytes;