weirflow 0.1.0

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