weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
typedef int (*cb_t)(int); int chain(int x, cb_t a, cb_t b){ return b(a(x)); }