weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
int stack_array(){ int stack[4]; int top=0; stack[top++]=1; stack[top++]=2; return stack[--top]; }