weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
#include <errno.h> int div_safe(int a, int b, int* out){ if(b==0){ errno=EINVAL; return -1; } *out=a/b; return 0; }