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
use weir::live;

#[test]
fn debug_empty_live_exact() {
    let offsets = &[0u32];
    let targets: &[u32] = &[];
    let masks: &[u32] = &[];
    let r = live::prepare_live_graph(0, offsets, targets, masks);
    println!("live empty exact: {:?}", r);
}