Skip to content

Commit 472f66d

Browse files
Add line break
1 parent c493a7d commit 472f66d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Common uses include computing dot products, matrix multiplication, evaluating po
3030
For a simple example of how one can use fused multiply-add, here's how we can compute the exact product of Numbers $a$ and $b$ with no rounding:
3131

3232
`let high = a * b` (using standard IEEE 754 multiplication)
33+
3334
`let err = Math.fma(a, b, -high)`
3435

3536
At this point, barring overflow or underflow of Number's exponent range, $MV(a) × MV(b) = MV(high) + MV(err)$, with $high$ containing the most significant bits of the result and $err$ containing the least significant bits of the result.

0 commit comments

Comments
 (0)