outer
std.linalg.outer · Level L0Outer product: every product xᵢ·yⱼ, by broadcasting. Exact up to one rounding per entry.
(x ⊗ y)ᵢⱼ = xᵢ·yⱼ
Signature
outer(x: f64[m], y: 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.
- input
- operation
- constant
- call
- output
Verification
- Signature proven by NOVA’s shape solver, for every size.
- Equal to the reference
np.outer(x, y)in exact rational arithmetic, on all 40 test cases. - All 560 float64 results inside the running error bound; the closest uses 91% of it.
- Interpreter and NumPy backend return bit-identical results.
Accuracy in detail
- correctly rounded (the float64 nearest the exact value)
- 100%
- bit-equal to the NumPy formula in float64
- 100%
- largest error, in units in the last place
- 0.50
Identity
Calls
—
Called by
—
sha256:6c4c5b135f409814541b330ebfb605527159f3f381a96d38875bf9d3427be0b7The semantic hash of the graph. It changes when the program changes, and never when only its documentation does.