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
#[derive(Clone, Debug)]
struct Entry<K> {
    _a: u64,
    _b: u64,
    _key: K,
}

#[test]
fn check() {
    fn assert_clone<T: Clone>() {}
    assert_clone::<std::cmp::Reverse<Entry<u32>>>();
    assert_clone::<std::collections::BinaryHeap<std::cmp::Reverse<Entry<u32>>>>();
}