weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
struct Tree { int v; struct Tree* left; struct Tree* right; }; int use_tree(){ struct Tree t={1,0,0}; return t.v; }