weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
typedef int (*op_t)(int,int); int add(int a,int b){return a+b;} int sub(int a,int b){return a-b;} int dispatch(int a,int b,op_t t){return t(a,b);}