weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
2
3
4
5
6
7
8
/// Caller-owned staging for repeated range propagation dispatches.
#[derive(Clone, Debug, Default, PartialEq)]
pub struct RangePropagateScratch {
    pub(crate) defs_bytes: Vec<u8>,
    pub(crate) edges_bytes: Vec<u8>,
    pub(crate) out_bytes: Vec<u8>,
    pub(crate) outputs: Vec<Vec<u8>>,
}