linear

std.nn.linear · Level L0

Affine layer: a batch of rows times a weight matrix, plus a bias.

Y = X·W + b

Signature

linear(X: f64[m, k], W: f64[k, n], b: f64[n]) → f64[m, n]

Structure

The function as NOVA stores it: one box per input, operation and output, and arrows that carry values. A double border marks a call to another library function; select it to open that function.

Xf64[m, k]Wf64[k, n]bf64[n]MatMulXWAddYYf64[m, n]
  • input
  • operation
  • constant
  • call
  • output

Verification

  • Signature proven by NOVA’s shape solver, for every size.
  • Equal to the reference X @ W + b in exact rational arithmetic, on all 40 test cases.
  • All 523 float64 results inside the running error bound; the closest uses 72% of it.
  • Interpreter and NumPy backend return bit-identical results.
Accuracy in detail
correctly rounded (the float64 nearest the exact value)
70%
bit-equal to the NumPy formula in float64
100%
largest error, in units in the last place
222

Large ulp counts appear only where cancellation drives a result toward zero; the absolute error is still inside the bound.

Identity

Calls
—
Called by
sha256:035bcc77537b3f00d8df34fc906bfe953607d33e7284fa6d326ad4a5a74aeff3

The semantic hash of the graph. It changes when the program changes, and never when only its documentation does.