weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
2
3
4
5
6
7
8
use crate::fixed_point_resident::FixedPointResidentGraph;

#[derive(Clone, Debug, PartialEq)]
pub(super) struct FixedPointResidentGraphCacheEntry {
    pub(super) retained_bytes: usize,
    pub(super) last_seen: u64,
    pub(super) graph: FixedPointResidentGraph,
}