grad — reverse-mode automatic differentiation over tensor.
Define-by-run: every g_* op computes its value EAGERLY through the tensor package and appends one node to a flat TAPE. backward(loss) walks the tape once in reverse — node inputs always have smaller indices, so reverse index order IS topological order — accumulating dL/dx into a gradient slot per node. Fan-out (one value used twice) sums naturally.
Ownership: the tape is a SINGLE-OWNER ARENA. It owns every value tensor and every gradient tensor; grad_param/grad_const COPY the caller's tensor in, gvar_value/grad_of hand out BORROWS (aliased Tensor views — never free them, invalid after tape_free / tape_reset_to), and one tape_free releases everything. No per-node ownership, no per-node closures — a ( Vec GNode ) of {op, a, b, scalar} plus two parallel pointer vecs. This keeps the hot loop free of NURL's closure-capture hazards and gives a deterministic reverse order for free.
The minibatch pattern: register parameters once, take tape_mark, then per batch build the episode's graph, backward, step the optimizer, and tape_reset_to(mark) — parameters (and their Adam state, which lives in the optimizer) survive, intermediates are freed, the arena keeps its capacity.
M1 scope (CPU): elementwise ops + all-axes reductions. Binary ops require EQUAL shapes (broadcast backward is M2, with its own oracle); scalar variants g_adds/g_muls cover the mixed case. A shape mismatch POISONS the tape (tape_ok → F, ops keep returning without touching memory) rather than half-computing.
Verification: tests/grad_test.nu checks every backward rule two independent ways — central finite differences and hand-derived analytic identities (e.g. d/dx Σx² = 2x, exact to the bit).
@ gop_param → i── op codes ──────────────────────────────────────────────────────────
@ gop_const → i@ gop_add → i@ gop_sub → i@ gop_mul → i@ gop_div → i@ gop_neg → i@ gop_adds → i@ gop_muls → i@ gop_relu → i@ gop_sigmoid → i@ gop_tanh → i@ gop_exp → i@ gop_log → i@ gop_sqrt → i@ gop_sum → i@ gop_mean → i@ gop_matmul → i@ gop_bmm → i@ gop_transpose → i@ gop_reshape → i@ gop_softmax → i@ gop_slice → i@ gop_concat → i: GNode: GNode {
i op
i a
i b
f s
}
One tape node: the op, its input node ids (-1 = none), a scalar operand.
: GVar: GVar {
i id
}
A variable on the tape — an opaque node handle.
: GTape: GTape {
i ok // 1 healthy · 0 poisoned (shape mismatch etc.)
( Vec GNode ) nodes
( Vec s ) vals // *Tensor per node (tape-owned)
( Vec s ) grads // *Tensor per node, 0 until backward touches it
( Vec s ) aux // *GAux per node, 0 for ops that need none (slice starts)
}
: GAux: GAux {
( Vec i ) starts
}
Per-node auxiliary payload (only g_slice uses one today).
@ tape_new → *GTape@ _g_tfree s pp → v@ _g_auxfree s pp → v@ tape_free * GTape tp → v@ tape_ok * GTape tp → b@ tape_len * GTape tp → i@ tape_mark * GTape tp → iWatermark for tape_reset_to: everything appended after mark is dropped.
@ tape_reset_to * GTape tp i mark → vDrop every node at id >= mark (freeing its tensors) and ZERO the gradients of what remains — a fresh episode over the surviving parameters. The vecs keep their capacity, so a minibatch loop does not re-malloc the arena.
@ _g_heap Tensor t → sMove a Tensor VALUE into a fresh heap cell the tape owns. The value's Vec handles alias into the cell — the caller must NOT free the value after.
@ _g_val * GTape tp i id → s@ _g_grad_ptr * GTape tp i id → s@ _g_poison * GTape tp s why → GVar@ _g_push * GTape tp i op i a i b f sc Tensor val → GVarAppend a node whose value is val (ownership moves to the tape).
@ _g_same_shape s pa s pb → bEqual-shape check for M1 binops.
@ grad_param * GTape tp Tensor w → GVarRegister a PARAMETER (requires-grad leaf). The tensor is COPIED in; the live, optimizer-updated copy is the tape's (read it via gvar_value).
@ grad_const * GTape tp Tensor c → GVarRegister a CONSTANT (no gradient flows into it).
@ gvar_value * GTape tp GVar v → TensorThe node's value as a BORROWED Tensor view (do not free; invalid after tape_free / a reset past this node).
@ grad_of * GTape tp GVar v → TensorThe accumulated gradient as a BORROWED Tensor view. Allocates a zero gradient on first touch so the borrow is always valid.
@ g_scalar * GTape tp GVar v → fFirst element of the node's value — the scalar-loss readout.
@ _g_view s pp → TensorA borrowed Tensor view of a tape value (alias — never free).
@ _g_binop * GTape tp GVar a GVar b i op → GVar@ g_add * GTape tp GVar a GVar b → GVar@ g_sub * GTape tp GVar a GVar b → GVar@ g_mul * GTape tp GVar a GVar b → GVar@ g_div * GTape tp GVar a GVar b → GVar@ _g_unary * GTape tp GVar a i op f sc → GVar@ g_neg * GTape tp GVar a → GVar@ g_adds * GTape tp GVar a f sc → GVar@ g_muls * GTape tp GVar a f sc → GVar@ g_relu * GTape tp GVar a → GVar@ g_sigmoid * GTape tp GVar a → GVar@ g_tanh * GTape tp GVar a → GVar@ g_exp * GTape tp GVar a → GVar@ g_log * GTape tp GVar a → GVar@ g_sqrt * GTape tp GVar a → GVar@ _g_reduce * GTape tp GVar a i op → GVar@ g_sum * GTape tp GVar a → GVar@ g_mean * GTape tp GVar a → GVar@ g_mse * GTape tp GVar y GVar t → GVarMean squared error as a composite: mean((y − t)²). Exercises fan-out-free chaining; the FD harness covers it end to end.
@ g_matmul * GTape tp GVar a GVar b → GVar@ g_bmm * GTape tp GVar a GVar b → GVar@ g_transpose * GTape tp GVar a → GVar@ g_reshape * GTape tp GVar a ( Vec i ) shape → GVarshape is borrowed (copied here; tensor_reshape adopts the copy).
@ g_softmax * GTape tp GVar a i axis → GVar@ g_slice * GTape tp GVar a ( Vec i ) starts ( Vec i ) stops → GVarstarts/stops are borrowed; starts is retained (aux) for the backward scatter.
@ g_concat * GTape tp GVar a GVar b i axis → GVar@ _g_acc_reduce * GTape tp i dst Tensor c f sgn → vAccumulate an out-shaped contribution c into node dst's gradient, summing over broadcast axes (numpy alignment: trailing dims line up, a size-1 or missing dst dim receives the sum over that out axis). sgn is +1/-1 (sub/div's second input negates). Row-major walk of c — one documented, deterministic accumulation order.
@ _g_ensure_grad * GTape tp i id → vAllocate node id's gradient as zeros (same shape as its value) if absent.
@ backward * GTape tp GVar loss → bdL/d(node) of loss seeds to ones; every earlier node receives the sum of its consumers' contributions. Returns F on a poisoned/invalid tape.
grad/opt.nu — optimizers over tape parameters: SGD and Adam, per-parameter L2 (weight decay), optional global-norm gradient clipping.
An optimizer is built empty (opt_adam_new lr / opt_sgd_new lr) and parameters are added one by one with their OWN L2 coefficient (opt_add o tp p alpha) — weights typically carry alpha, biases 0, which is the param-groups need in miniature. opt_step o tp reads each parameter's accumulated gradient from the tape and updates the parameter value IN PLACE on the tape (the tape owns the live copy; read it back with gvar_value).
Semantics: g = grad + alpha·w (L2 applied to the raw gradient; the loss is expected to be mean-scaled — no hidden batch divide here) SGD : w -= lr·g Adam : m = β1·m + (1−β1)·g ; v = β2·v + (1−β2)·g² w -= lr·√(1−β2ᵗ)/(1−β1ᵗ) · m/(√v + ε) β1 = 0.9, β2 = 0.999, ε = 1e-8 — sklearn/PyTorch defaults.
The step counter lives behind the *Opt heap pointer, so it ADVANCES — the frozen-Adam-t bug class (a scalar counter field on a by-value struct never persists in NURL) cannot recur, and tests/opt pin the trajectory bit-for- bit against a hand-computed two-step Adam.
Clipping (opt_set_clip o maxn): one global L2 norm over every added parameter's gradient; if it exceeds maxn every gradient is scaled by maxn/norm before the update — the standard clip-by-global-norm.
A parameter whose gradient was never touched by backward() is SKIPPED (PyTorch's None-grad rule), not decayed.
: Opt: Opt {
i kind // 0 sgd · 1 adam
f lr
f clip // 0 = off
i t // Adam step count (advances — behind the heap pointer)
i total // total moment elements
( Vec i ) ids // param node ids
( Vec f ) alphas // per-param L2
( Vec i ) offs // each param's slab offset into m / v
( Vec i ) lens // each param's element count
( Vec f ) m // first moments (adam)
( Vec f ) v // second moments (adam)
}
@ _opt_new i kind f lr → *Opt@ opt_sgd_new f lr → *Opt@ opt_adam_new f lr → *Opt@ opt_free * Opt o → v@ opt_set_clip * Opt o f maxn → v@ opt_add * Opt o * GTape tp GVar p f alpha → vRegister one tape parameter with its L2 coefficient (0 for biases).
@ _opt_gnorm * Opt o * GTape tp → fThe global L2 norm of every registered parameter's gradient (0-grads skip).
@ opt_step * Opt o * GTape tp → vOne update step from the gradients currently on the tape.