Good online ref for extending precision using Dekker and Knuth method(s)?

I’m looking for a good online reference explaining the extended precision multiplication and addition algorithms used in the Mandelbrot demo in the SDK. All I’ve found so far are pointers to journals and some random discussions along the lines of “it works because Dekker and Knuth said so”.

Thanks,

–arne

Well, I’ve not seen any takers here.

Some pretty simple testing with some fractal programs I wrote for SSE2 show that the performance is “better” (seems faster, haven’t done the measurements yet) than a 3.4 Ghz Pentium D with same calcs run in tandem on both cores (i.e. 4 double precision “threads” in parallel), but 100x less precise. Assuming that 2xsingle precision gives about 2*7=14 decimal digits of precision vs about 16 for true double the100x factor is right on.

I’d still like to see a good reference for this. Really…

–arne

Here’s a talk that describes them and works on extending to “quadruple” precision. Are you looking for a proof or a walkthrough?

http://bt.pa.msu.edu/TM/BocaRaton2006/talks/wittig.pdf

This is helpful, thanks!

–arne