weirflow 0.1.0

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

pub(super) struct ResidentIfdsCsrCacheEntry<R> {
    pub(super) retained_bytes: usize,
    pub(super) last_seen: u64,
    pub(super) graph: ResidentPreparedIfdsCsr<R>,
}