weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
int bar(int x); int foo(int x){ if(x<=0) return 0; return bar(x-1)+1; } int bar(int x){ if(x<=0) return 0; return foo(x-1)-1; }