weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
struct Point { int x; int y; }; int use_struct(){ struct Point p={1,2}; return p.x+p.y; }