weirflow 0.1.0

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