weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
#include <setjmp.h> jmp_buf e1,e2; int nested(){ if(setjmp(e1)==0){ if(setjmp(e2)==0){ longjmp(e2,1); } longjmp(e1,1); } return 0; }