Posts: 4,646
Threads: 1,493
Joined: Sep 2016
the float.hex() method produces output that shows 52 bits of precision, yet the float type as implemented on x86 (both 32 bit and 64 bit systems) has 53 bits of precision.
does anyone know of a way to get all 53 bits of a float in hexadecimal format?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
Jul-26-2017, 02:17 AM
(This post was last modified: Jul-26-2017, 02:25 AM by Skaperen.)
(Jul-26-2017, 02:09 AM)nilamo Wrote: Is the last 1 bit for +/-?
i don't understand this question.
nevermind! i had it wrong. it is doing all 53 bits. i failed to count what it showed to the left of the '.'.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
Jul-26-2017, 03:53 AM
(This post was last modified: Jul-26-2017, 04:00 AM by Skaperen.)
well the whole point is moot.
float.hex()
produces sufficient output to represent the complete precision of a float value (same as a
double in C) for the
x86 architecture. i have not tested other architectures, yet. i counted only the digits to the right of the decimal point because i had been working with those in some code and my mind focused too tightly when checking that.
i should write some code that runs some float maths to discover that true precision (BTDT in C (and asm for x86, Sparc, and S/370) and found a gcc bug many years ago when doing that) instead of using the implementation architecture configuration.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.