weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
int goto_nested(int n){ int i=0,j=0; outer: if(i>=n) goto done; j=0; inner: if(j>=n) goto next; j++; goto inner; next: i++; goto outer; done: return i+j; }