logsumexp

std.stats.logsumexp · Level L1

log Σ eˣ, computed stably by shifting by the maximum first.

m + log Σᵢ e^(xᵢ − m), m = max x

Signature

logsumexp(x: f64[n]) → f64[]

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[n]ReduceMaxmSubtractsExpeReduceSumtLoglAddlselsef64[]
  • input
  • operation
  • constant
  • call
  • output

Verification

  • Signature proven by NOVA’s shape solver, for every size.
  • Agrees with the reference np.log(np.sum(np.exp(x))) to 80 digits (100-digit arithmetic), on all 40 test cases.
  • All 40 float64 results inside the running error bound; the closest uses 24% of it.
  • Interpreter and NumPy backend return bit-identical results.
Accuracy in detail
correctly rounded (the float64 nearest the exact value)
88%
bit-equal to the NumPy formula in float64
70%
largest error, in units in the last place
1.42

Note

The shift by the maximum keeps every exponent at or below zero, so nothing overflows; the reference, which does overflow for large inputs in float64, agrees exactly in 100-digit arithmetic.

Identity

Calls
—
Called by
sha256:9d5e261c9583fdd79d32cbf18f63c683db1570ba0c2e3fa0088109cdb2aa000a

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