weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
struct LL { int v; struct LL* next; }; int ll_sum(struct LL* head){ int s=0; while(head){ s+=head->v; head=head->next; } return s; }