mailing list of musl libc
 help / color / mirror / code / Atom feed
* correctly rounded sqrt
@ 2012-03-14 16:56 Szabolcs Nagy
  2012-03-14 16:57 ` Szabolcs Nagy
  2012-03-14 19:01 ` Szabolcs Nagy
  0 siblings, 2 replies; 11+ messages in thread
From: Szabolcs Nagy @ 2012-03-14 16:56 UTC (permalink / raw)
  To: musl

i tried to solve the sqrt issue with a wrapper
as discussed on irc, but i couldn't find a nice
solution

if we check |x - y*y| and try to figure out
the rounding from that, then there are two
approaches

1) use the veltkamp-dekker exact multiplication formulas
(sq1 algorithm in my code)

or

2) use simpler method for y*y and use argumentum reduction
to handle large/small numbers (x*=2^2n, y*=2^-n)


i tried both: 1) only works correctly for subnormals
with double precision evaluation so it needs arg reduction
2) does not work in all cases (|x-y*y| and |x-y1*y1|
might be the same and resolving the tie is nontrivial)

so 1) with arg reduction is my current solution
and i don't know if it works in all cases
..and the code might be slow



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-03-15 18:22 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-14 16:56 correctly rounded sqrt Szabolcs Nagy
2012-03-14 16:57 ` Szabolcs Nagy
2012-03-14 19:01 ` Szabolcs Nagy
2012-03-15  1:46   ` Szabolcs Nagy
2012-03-15  3:23     ` Szabolcs Nagy
2012-03-15  5:07       ` Rich Felker
2012-03-15  5:30         ` Szabolcs Nagy
2012-03-15  8:02           ` Szabolcs Nagy
2012-03-15 16:12             ` Rich Felker
2012-03-15 18:14               ` Pascal Cuoq
2012-03-15 18:22                 ` Szabolcs Nagy

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).