weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
int switch_nested(int x, int y){ int r=0; switch(x){ case 1: switch(y){ case 1: r=1; break; default: r=0; } break; default: r=-1; } return r; }