weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
struct Inner { int a; }; struct Outer { struct Inner i; int b; }; int use_nested(){ struct Outer o={{1},2}; return o.i.a+o.b; }