From FreeBSD:
authorPeter Avalos <pavalos@dragonflybsd.org>
Sun, 24 Jun 2007 05:17:51 +0000 (05:17 +0000)
committerPeter Avalos <pavalos@dragonflybsd.org>
Sun, 24 Jun 2007 05:17:51 +0000 (05:17 +0000)
commitd2a1ba04c5bf3f3f45fd87a3b08297f37562dc01
treecc42bffe9b1abb08fa250769d9713f3fa5b95b19
parentdec8c72c920333e0619d04fb63346de0612c5d77
From FreeBSD:

Fixed the threshold for using the simple Taylor approximation.

In e_log.c, there was just a off-by-1 (1 ulp) error in the comment
about the threshold.  The precision of the threshold is unimportant,
but the magic numbers in the code are easier to understand when the
threshold is described precisely.

In e_logf.c, mistranslation of the magic numbers gave an off-by-1
(1 * 16 ulps) error in the intended negative bound for the threshold
and an off-by-7 (7 * 16 ulps) error in the intended positive bound for
the threshold, and the intended bounds were not translated from the
double precision bounds so they were unnecessarily small by a factor
of about 2048.

The optimization of using the simple Taylor approximation for args
near a power of 2 is dubious since it only applies to a relatively
small proportion of args, but if it is done then doing it 2048 times
as often _may_ be more efficient.  (My benchmarks show unexplained
dependencies on the data that increase with further optimizations
in this area.)
lib/libm/src/e_log.c
lib/libm/src/e_logf.c