From: Keith Randall Date: Mon, 21 Oct 2019 22:03:48 +0000 (-0700) Subject: doc: document new math.Fma function X-Git-Tag: go1.14beta1~331 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=953cc7490a58fa6b6e5086cc7ca2945b041c30ab;p=gostls13.git doc: document new math.Fma function This accidentally got committed - please review the whole paragraph as if it was new. Change-Id: I98e1db4670634c6e792d26201ce0cd329a6928b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/202579 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go1.14.html b/doc/go1.14.html index 61edeea83c..ed4e3e2ef9 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -225,12 +225,11 @@ TODO
math

- The new Fma function + The new FMA function computes x*y+z in floating point with no intermediate rounding of the x*y computation. Several architectures implement this computation - using dedicated hardware instructions for additional - performance. + using dedicated hardware instructions for additional performance.