code wiki / _hdl_build / nx_llm_arch_census.nx
nx_llm_arch_census.nx
buildroot/runtime/_hdl_build/nx_llm_arch_census.nx
about
nx_llm_arch_census.nx -- SOVEREIGN LLM-ARCHITECTURE COVERAGE CENSUS (July 2026 leaderboard). Grounded in
LIVE research (nishi_search web + WebSearch, 2026-07): the open-weight frontier is DeepSeek V4/R1, Qwen3.5,
Llama 4/5, GLM-5.1, Kimi K2.6 -- and the UNIVERSAL 2026 shift is MoE (sparse mixture-of-experts); the
differentiators are now ROUTING (MLA, GDN, iRoPE), not the base block. This organ maps each architecture
FEATURE the leaders use to OUR sovereign coverage (train + serve), computes a coverage number, and names the
gap -- so "beyond Qwen -> all modern leaders" is a measured checklist, not a vibe. Verdict COMPUTED per row
(HAVE=2/PARTIAL=1/GAP=0), never asserted. Refresh: re-run the research + edit the rows. license_tier: ORIGINAL
COVERAGE UPDATED 2026-07-15 (our-side rows only; frontier unchanged, arch landscape stable over days): MoE
serve GAP->HAVE (real OLMoE forward rungs 1-5), MLA train GAP->HAVE (gradcheck 40/40), QK-norm serve
GAP->HAVE (OLMoE layer). ⚠live-research refresh of the FRONTIER blocked this session: nishifamily.com/mcp
edge degraded (sovereign nx_https_get proves example.com 200 OK but nishifamily :443 readSH-fails = edge, not
our client) -> the July-2026 frontier rows are the nishi-researcher's last good run (07-10), architecturally current.
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
| 15 | 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 } |
| 16 | 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 } |
| 17 | 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 } |
| 18 | func cov(c: i64) -> i64 { if c==2 { w("HAVE " as *u8); return 0 } if c==1 { w("PARTIAL" as *u8); return 0 } w("GAP " as *u8); return 0 } |
| 21 | func row(name: *u8, leaders: i64, tr: i64, sv: i64, note: *u8) -> i64 |
| 28 | func main() -> i64 |