weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
#include <stdarg.h> double avg(int n,...){ va_list ap; va_start(ap,n); double s=0; for(int i=0;i<n;i++) s+=va_arg(ap,int); va_end(ap); return s/n; }