weirflow 0.1.0

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