code wiki / _hdl_build / nx_nn_train_gate.nx

nx_nn_train_gate.nx

buildroot/runtime/_hdl_build/nx_nn_train_gate.nx

3108 B52 linesdepth 3pulls 5 transitivereach 0 importersview sourcekind gate/prooftopic nn
docsdependenciesstructsconstsfunctions

about

nx_nn_train_gate.nx -- proves sovereign fixed-point training (nx_nn_train): batch gradient descent on a linear layer, starting from zero weights, learns a known target mapping -- the MSE loss collapses and the learned weights converge to the target. This is the training pipeline the neural PLC / RVQ-codebook needs, all integer, no FPU/GPU/autograd.

dependencies 4 imports · 0 importers

nx_syscalls.nx nx_gate_emit_lib.nx nx_nn_train.nx nx_gate_verdict.nx nx_nn_train_gate.nx

imports: nx_syscalls.nxnx_gate_emit_lib.nxnx_nn_train.nxnx_gate_verdict.nx

imported by: nobody (leaf or entry point)

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

main g_puts sys_write sys_mmap nxa_die sys_write ↻ sys_exit nxa_lock_take nxa_lock_addr sys_write ↻ nxa_lock_give nxa_lock_addr ↻ nxa_report_overrun sys_write ↻ nxa_dump_printable sys_write ↻ nxa_dump_sizes sys_write ↻ nnt_loss nnt_step g_pn sys_mmap ↻ sys_write ↻ g_check g_puts ↻ gv_ctr sys_mmap ↻ gv_verdict gv_note_bare_rate gv_bare_rate gv_at gv_obj_has_n gv_at ↻ gv_puts sys_write ↻ gv_num sys_mmap ↻ sys_write ↻ sys_munmap gv_puts ↻

structs

none

consts

none

functions

9func g_abs(v: i64) -> i64 { if v < 0 { return 0 - v } return v }
11func main() -> i64