vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
4
5
6
7
use crate::ir::Node;
use std::collections::HashSet;

pub(crate) struct LiveResult {
    pub(super) nodes: Vec<Node>,
    pub(super) live_in: HashSet<String>,
}