code wiki / _hdl_build / nx_intfp_frontier_census.nx

nx_intfp_frontier_census.nx

buildroot/runtime/_hdl_build/nx_intfp_frontier_census.nx

6626 B59 linesdepth 2pulls 2 transitivereach 0 importersview sourcekind tooltopic intfp
docsdependenciesstructsconstsfunctions

about

nx_intfp_frontier_census.nx -- honest census: the sovereign INTEGER (no-float) training stack vs the 2026 LLM SOTA architecture frontier (DeepSeek V4/R1, Qwen3.5, Llama4/5, GLM-5.1, Kimi K2.6). For each frontier component it marks PROVEN (gate + gradcheck result), PARTIAL, or GAP. Emits a frontier-coverage permille. CRITICAL honesty (per the measured-SOTA doctrine): "architecture component gradchecked in integer at TOY scale" is NOT "trained a frontier-scale model that beats the tool" -- the SCALE + measured-quality gaps are printed loud, not hidden. license_tier: ORIGINAL

dependencies 1 imports · 0 importers

nx_syscalls.nx nx_intfp_frontier_census.nx

imports: nx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main w sys_write row w ↻ wpad sys_write ↻ st w ↻ wn sys_write ↻ sys_mmap

structs

none

consts

none

functions

9func w(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 }
called by 3: strowmain calls 1: sys_write
10func wn(v: i64) -> i64 { if v==0 { sys_write(1,"0" as *u8,1); return 0 } var m: i64=v; if m<0{sys_write(1,"-" as *u8,1);m=0-m} let t: *u8=sys_mmap(24); var k: i64=0; while m>0{t[k]=(48+(m%10)) as u8;m=m/10;k=k+1} let o: *u8=sys_mmap(24); var q: i64=k-1; var i: i64=0; while q>=0{o[i]=t[q];i=i+1;q=q-1} sys_write(1,o,i); return 0 }
called by 1: main calls 2: sys_writesys_mmap
11func wpad(s: *u8, width: i64) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); var i: i64=n; while i<width { sys_write(1," " as *u8,1); i=i+1 } return 0 }
called by 1: row calls 1: sys_write
13func st(c: i64) -> i64 { if c==2 { w("PROVEN " as *u8); return 0 } if c==1 { w("PARTIAL" as *u8); return 0 } w("GAP " as *u8); return 0 }
called by 1: row calls 1: w
14func row(feat: *u8, leader: *u8, s: i64, note: *u8) -> i64 { w(" "); wpad(feat, 20); wpad(leader, 20); st(s); w(" "); w(note); w("\n" as *u8); return s }
called by 1: main calls 3: wwpadst
16func main() -> i64
calls 3: wrowwn