weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
typedef int (*op_t)(int,int); int mul(int a,int b){return a*b;} int div_(int a,int b){return a/b;} int mod_(int a,int b){return a%b;} int dispatch3(int a,int b,op_t t){return t(a,b);}