code wiki / _hdl_build / nx_intfp_frontier_census.nx
nx_intfp_frontier_census.nx
buildroot/runtime/_hdl_build/nx_intfp_frontier_census.nx
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
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
structs
| none |
consts
| none |
functions
| 9 | func w(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 } |
| 10 | func 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 } |
| 11 | func 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 } |
| 13 | func 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 } |
| 14 | func 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 } |
| 16 | func main() -> i64 |