double-double-arithmetic Questions
4
Solved
I have to analyse a large amount of data using Python3 (PyPy implementation), where I do some operations on quite large floats, and must check if the results are close enough to integers.
To exempl...
Fleda asked 12/10, 2023 at 21:58
1
Solved
One way of increasing precision beyond that of a double (e.g. if my application is doing something space-related that needs to represent accurate positions over distances of many light-years) is to...
Sham asked 21/1, 2020 at 21:54
3
When I first got a Haswell processor I tried implementing FMA to determine the Mandelbrot set. The main algorithm is this:
intn = 0;
for(int32_t i=0; i<maxiter; i++) {
floatn x2 = square(x), y...
Grin asked 1/6, 2015 at 12:25
1
Solved
I've seen in wikipedia that someway to implement quad-precision is to use double-double arithmetic even if it's not exactly the same precision in terms of bits: https://en.wikipedia.org/wiki/Quadru...
Breazeale asked 27/7, 2015 at 7:38
1
Solved
If one were to emulate double precision floating point with two single precision floating points what would the performance be like, and can it be done well?
Currently Nvidia is charging quite a p...
Hauck asked 30/3, 2015 at 11:17
8
Solved
I am writing a program for an embedded hardware that only supports 32-bit single-precision floating-point arithmetic. The algorithm I am implementing, however, requires a 64-bit double-precision ad...
Byzantium asked 20/7, 2011 at 23:53
1
Context: double-double arithmetic
“Double-double” is a representation of numbers as the sum of two double-precision numbers without overlap in the significands. This representation takes advantage ...
Lornalorne asked 6/4, 2013 at 16:35
1
Following papers and source code for double-double arithmetic for some time, I still can't find out how exactly a dd_real ( defined as struct dd_real { double x[2];...}) number is split into two do...
Trossachs asked 25/3, 2012 at 2:20
1
© 2022 - 2024 — McMap. All rights reserved.