nx_hash_bench_run.nx
buildroot/runtime/nx_hash_bench_run.nx
about
nx_hash_bench_run.nx -- measures + prints our SHA-1/SHA-256 hashing throughput.
Run output is redirected to knowledge/status/hash_throughput.log (the first concrete
hashing-MB/s figure in the field -- no incumbent publishes one). Timing = wall-clock,
non-deterministic, single-run: a MEASUREMENT, not a gate. Correctness is gated by
nx_hash_bench_test. exit 0 always (unless the KAT fails, which would mean broken crypto).
dependencies 2 imports · 0 importers
imports: nx_hash_bench.nxnx_itoa_lib.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
| 9 | const K_MAGIC_1000000: i64 = 1000000 |
functions
| 11 | func _r_puts(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 1: main |
| 16 | func _r_putn(v: i64) -> i64 { nxi_out(v); return 0 } |
| 18 | func main() -> i64 |