Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #26219 > unrolled thread
| Started by | Steven D'Aprano <steve+comp.lang.python@pearwood.info> |
|---|---|
| First post | 2012-07-30 00:44 +0000 |
| Last post | 2012-07-30 09:14 -0700 |
| Articles | 15 — 11 participants |
Back to article view | Back to comp.lang.python
Extracting bit fields from an IEEE-784 float Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-07-30 00:44 +0000
PyPI question, or, maybe I'm just stupid Chris Gonnerman <chris@gonnerman.org> - 2012-07-29 20:26 -0500
Re: PyPI question, or, maybe I'm just stupid Ben Finney <ben+python@benfinney.id.au> - 2012-07-30 14:00 +1000
Re: [Python] Re: PyPI question, or, maybe I'm just stupid Chris Gonnerman <chris@gonnerman.org> - 2012-07-30 07:46 -0500
Re: Extracting bit fields from an IEEE-784 float Dan Sommers <dan@tombstonezero.net> - 2012-07-29 18:08 -0700
Re: Extracting bit fields from an IEEE-784 float Terry Reedy <tjreedy@udel.edu> - 2012-07-30 01:17 -0400
Re: Extracting bit fields from an IEEE-784 float Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> - 2012-07-30 08:42 +0200
Re: Extracting bit fields from an IEEE-784 float Mark Dickinson <dickinsm@gmail.com> - 2012-07-30 00:57 -0700
Re: PyPI question, or, maybe I'm just stupid Dieter Maurer <dieter@handshake.de> - 2012-07-30 11:20 +0200
Re: Extracting bit fields from an IEEE-784 float Grant Edwards <invalid@invalid.invalid> - 2012-07-30 14:16 +0000
Re: Extracting bit fields from an IEEE-784 float Roy Smith <roy@panix.com> - 2012-07-30 10:28 -0400
Re: Extracting bit fields from an IEEE-784 float Mark Lawrence <breamoreboy@yahoo.co.uk> - 2012-07-30 15:50 +0100
Re: Extracting bit fields from an IEEE-784 float Grant Edwards <invalid@invalid.invalid> - 2012-07-30 15:47 +0000
Re: Extracting bit fields from an IEEE-784 float Roy Smith <roy@panix.com> - 2012-07-30 16:50 -0400
Re: Extracting bit fields from an IEEE-784 float Mark Dickinson <dickinsm@gmail.com> - 2012-07-30 09:14 -0700
| From | Steven D'Aprano <steve+comp.lang.python@pearwood.info> |
|---|---|
| Date | 2012-07-30 00:44 +0000 |
| Subject | Extracting bit fields from an IEEE-784 float |
| Message-ID | <5015d8d4$0$11120$c3e8da3@news.astraweb.com> |
I wish to extract the bit fields from a Python float, call it x. First I
cast the float to 8-bytes:
s = struct.pack('=d', x)
i = struct.unpack('=q', s)[0]
Then I extract the bit fields from the int, e.g. to grab the sign bit:
(i & 0x8000000000000000) >> 63
Questions:
1) Are there any known implementations or platforms where Python floats
are not C doubles? If so, what are they?
2) If the platform byte-order is reversed, do I need to take any special
action? I don't think I do, because even though the float is reversed, so
will be the bit mask. Is this correct?
3) Any other problems with the way I am doing this?
Thanks in advance,
Steven
[toc] | [next] | [standalone]
| From | Chris Gonnerman <chris@gonnerman.org> |
|---|---|
| Date | 2012-07-29 20:26 -0500 |
| Subject | PyPI question, or, maybe I'm just stupid |
| Message-ID | <mailman.2708.1343611623.4697.python-list@python.org> |
| In reply to | #26219 |
I've been making some minor updates to the PollyReports module I announced a while back, and I've noticed that when I upload it to PyPI, my changelog (CHANGES.txt) doesn't appear to be integrated into the site at all. Do I have to put the changes into the README, or have I missed something here? It seems that there should be some automatic method whereby PyPI users could easily see what I've changed without downloading it first.
[toc] | [prev] | [next] | [standalone]
| From | Ben Finney <ben+python@benfinney.id.au> |
|---|---|
| Date | 2012-07-30 14:00 +1000 |
| Subject | Re: PyPI question, or, maybe I'm just stupid |
| Message-ID | <87fw89rj7z.fsf@benfinney.id.au> |
| In reply to | #26221 |
Chris Gonnerman <chris@gonnerman.org> writes: > I've been making some minor updates to the PollyReports module Your post is showing up as a reply to a thread about IEEE-784 floats, because you created your message as a reply. Consequently, it's rather confusing why you suddenly start talking about PollyReports. If you want to attract attention to an unrelated topic, it's best if you don't reply to an existing thread; instead, start a new thread by composing a new message to the forum. -- \ “I'd take the awe of understanding over the awe of ignorance | `\ any day.” —Douglas Adams | _o__) | Ben Finney
[toc] | [prev] | [next] | [standalone]
| From | Chris Gonnerman <chris@gonnerman.org> |
|---|---|
| Date | 2012-07-30 07:46 -0500 |
| Subject | Re: [Python] Re: PyPI question, or, maybe I'm just stupid |
| Message-ID | <mailman.2729.1343652970.4697.python-list@python.org> |
| In reply to | #26226 |
On 07/29/2012 11:00 PM, Ben Finney wrote: > Your post is showing up as a reply to a thread about IEEE-784 floats, > because you created your message as a reply. Consequently, it's rather > confusing why you suddenly start talking about PollyReports. If you > want to attract attention to an unrelated topic, it's best if you > don't reply to an existing thread; instead, start a new thread by > composing a new message to the forum. My apologies. I did not consider that headers I can't see might be being sent along.
[toc] | [prev] | [next] | [standalone]
| From | Dan Sommers <dan@tombstonezero.net> |
|---|---|
| Date | 2012-07-29 18:08 -0700 |
| Message-ID | <mailman.2709.1343611680.4697.python-list@python.org> |
| In reply to | #26219 |
On 2012-07-30 at 00:44:04 +0000,
Steven D'Aprano <steve+comp.lang.python@pearwood.info> wrote:
> I wish to extract the bit fields from a Python float, call it x. First I
> cast the float to 8-bytes:
>
> s = struct.pack('=d', x)
> i = struct.unpack('=q', s)[0]
>
> Then I extract the bit fields from the int, e.g. to grab the sign bit:
>
> (i & 0x8000000000000000) >> 63
> 3) Any other problems with the way I am doing this?
No, but perhaps this would be clearer:
import math
sign = math.copysign(1.0, x)
There are solutions that use math.frexp, too, but IMO they're more
obtuse.
HTH,
Dan
[toc] | [prev] | [next] | [standalone]
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Date | 2012-07-30 01:17 -0400 |
| Message-ID | <mailman.2712.1343625462.4697.python-list@python.org> |
| In reply to | #26219 |
On 7/29/2012 8:44 PM, Steven D'Aprano wrote:
> I wish to extract the bit fields from a Python float, call it x. First I
> cast the float to 8-bytes:
>
> s = struct.pack('=d', x)
> i = struct.unpack('=q', s)[0]
>
> Then I extract the bit fields from the int, e.g. to grab the sign bit:
>
> (i & 0x8000000000000000) >> 63
>
>
> Questions:
>
> 1) Are there any known implementations or platforms where Python floats
> are not C doubles? If so, what are they?
CPython floats are C doubles, which should be IEEE doubles. Other
implementations have a different to probably the same thing.
> 2) If the platform byte-order is reversed, do I need to take any special
> action? I don't think I do, because even though the float is reversed, so
> will be the bit mask. Is this correct?
The math modules functions to disassemble floats will not care.
--
Terry Jan Reedy
[toc] | [prev] | [next] | [standalone]
| From | Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> |
|---|---|
| Date | 2012-07-30 08:42 +0200 |
| Message-ID | <i0nhe9-9du.ln1@satorlaser.homedns.org> |
| In reply to | #26219 |
Am 30.07.2012 02:44, schrieb Steven D'Aprano:
> I wish to extract the bit fields from a Python float, call it x. First I
> cast the float to 8-bytes:
>
> s = struct.pack('=d', x)
> i = struct.unpack('=q', s)[0]
>
> Then I extract the bit fields from the int, e.g. to grab the sign bit:
>
> (i & 0x8000000000000000) >> 63
>
>
> Questions:
>
> 1) Are there any known implementations or platforms where Python floats
> are not C doubles? If so, what are they?
The struct docs refer to C's double type, so it depends on that type
probably. However, regardless of C's double type, the same docs refer to
the IEEE form when packed into a byte array. Is it just the
representation you are after or some specific behaviour?
> 2) If the platform byte-order is reversed, do I need to take any special
> action? I don't think I do, because even though the float is reversed, so
> will be the bit mask. Is this correct?
Yes, the code is fine. If you have doubts, I have a big-endian system at
home (Linux/PowerPC) where I could run tests.
> 3) Any other problems with the way I am doing this?
Python docs refer to IEEE-754, not 784? Typo?
Uli
[toc] | [prev] | [next] | [standalone]
| From | Mark Dickinson <dickinsm@gmail.com> |
|---|---|
| Date | 2012-07-30 00:57 -0700 |
| Message-ID | <48341117-060e-492a-b476-4d2ac58ba590@googlegroups.com> |
| In reply to | #26219 |
On Monday, July 30, 2012 1:44:04 AM UTC+1, Steven D'Aprano wrote: > 1) Are there any known implementations or platforms where Python floats > are not C doubles? If so, what are they? Well, IronPython is presumably using .NET Doubles, while Jython will be using Java Doubles---in either case, that's specified to be the IEEE 754 binary64 type. For CPython, and I guess PyPy too, we're using C doubles, which in theory are in whatever format the platform provides, but in practice are always IEEE 754 binary64 again. So you're pretty safe assuming IEEE 754 binary64 format. If you ever meet a current Python running on a system that *doesn't* use IEEE 754 for its C doubles, please let me know---there are a lot of interesting questions that would come up in that case. > 2) If the platform byte-order is reversed, do I need to take any special > > action? I don't think I do, because even though the float is reversed, so > > will be the bit mask. Is this correct? True; on almost all current platforms, the endianness of int types matches the endianness of float types. But to be safe, why not use '<d' and '<q' in your formats instead of '=d' and '=q'? That way you don't have to worry. > 3) Any other problems with the way I am doing this? You might consider whether you want to use '<q' or '<Q' --- i.e. whether you want a signed integer or an unsigned integer to be returned. For grabbing bits, '<Q' seems a bit cleaner, while '<q' has the nice property that you can tell the sign of the original double by looking at the sign of the integer. -- Mark
[toc] | [prev] | [next] | [standalone]
| From | Dieter Maurer <dieter@handshake.de> |
|---|---|
| Date | 2012-07-30 11:20 +0200 |
| Subject | Re: PyPI question, or, maybe I'm just stupid |
| Message-ID | <mailman.2719.1343640070.4697.python-list@python.org> |
| In reply to | #26219 |
Chris Gonnerman <chris@gonnerman.org> writes: > I've been making some minor updates to the PollyReports module I > announced a while back, and I've noticed that when I upload it to > PyPI, my changelog (CHANGES.txt) doesn't appear to be integrated into > the site at all. Do I have to put the changes into the README, or > have I missed something here? It seems that there should be some > automatic method whereby PyPI users could easily see what I've changed > without downloading it first. "CHANGES.txt" is not automatically presented. If necessary, you must integrate it into the "long description". However, personally, I am not interested in all the details (typically found in "CHANGES.txt") but some (often implicit) information is sufficient for me: something like "major API change", "minor bug fixes". Thus, think carefully what you put on the overview page. I find it very stupid to see several window scrolls of changes for a package but to learn how to install the package, I have to download its source...
[toc] | [prev] | [next] | [standalone]
| From | Grant Edwards <invalid@invalid.invalid> |
|---|---|
| Date | 2012-07-30 14:16 +0000 |
| Message-ID | <jv64v5$g2n$2@reader1.panix.com> |
| In reply to | #26219 |
On 2012-07-30, Steven D'Aprano <steve+comp.lang.python@pearwood.info> wrote:
> 1) Are there any known implementations or platforms where Python floats
> are not C doubles? If so, what are they?
And the question you didn't ask: are there any platforms where a C
double isn't IEEE-754?
The last ones I worked on that where the FP format wasn't IEEE were
the DEC VAX and TI's line if 32-bit floating-point DSPs. I don't
think Python runs on the latter, but it might on the former.
--
Grant Edwards grant.b.edwards Yow! I was born in a
at Hostess Cupcake factory
gmail.com before the sexual
revolution!
[toc] | [prev] | [next] | [standalone]
| From | Roy Smith <roy@panix.com> |
|---|---|
| Date | 2012-07-30 10:28 -0400 |
| Message-ID | <roy-405A33.10285130072012@news.panix.com> |
| In reply to | #26255 |
In article <jv64v5$g2n$2@reader1.panix.com>, Grant Edwards <invalid@invalid.invalid> wrote: > The last ones I worked on that where the FP format wasn't IEEE were > the DEC VAX According to http://en.wikipedia.org/wiki/Vax#History, the last VAX was produced 7 years ago. I'm sure there's still more than a few chugging away in corporate data centers and manufacturing floors, but as an architecture, it's pretty much a dead parrot. IEEE floating point is as near to a universal standard as it gets in the computer world. About the only thing that has it beat for market penetration and longevity are 2's complement integers and 8-bit bytes.
[toc] | [prev] | [next] | [standalone]
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
|---|---|
| Date | 2012-07-30 15:50 +0100 |
| Message-ID | <mailman.2732.1343659747.4697.python-list@python.org> |
| In reply to | #26255 |
On 30/07/2012 15:16, Grant Edwards wrote: > On 2012-07-30, Steven D'Aprano <steve+comp.lang.python@pearwood.info> wrote: > >> 1) Are there any known implementations or platforms where Python floats >> are not C doubles? If so, what are they? > > And the question you didn't ask: are there any platforms where a C > double isn't IEEE-754? > > The last ones I worked on that where the FP format wasn't IEEE were > the DEC VAX and TI's line if 32-bit floating-point DSPs. I don't > think Python runs on the latter, but it might on the former. > Support for Python on VMS has been dropped for v3.3 see http://bugs.python.org/issue11918 -- Cheers. Mark Lawrence.
[toc] | [prev] | [next] | [standalone]
| From | Grant Edwards <invalid@invalid.invalid> |
|---|---|
| Date | 2012-07-30 15:47 +0000 |
| Message-ID | <jv6ab7$jne$1@reader1.panix.com> |
| In reply to | #26257 |
On 2012-07-30, Mark Lawrence <breamoreboy@yahoo.co.uk> wrote:
> On 30/07/2012 15:16, Grant Edwards wrote:
>> On 2012-07-30, Steven D'Aprano <steve+comp.lang.python@pearwood.info> wrote:
>>
>>> 1) Are there any known implementations or platforms where Python floats
>>> are not C doubles? If so, what are they?
>>
>> And the question you didn't ask: are there any platforms where a C
>> double isn't IEEE-754?
>>
>> The last ones I worked on that where the FP format wasn't IEEE were
>> the DEC VAX and TI's line if 32-bit floating-point DSPs. I don't
>> think Python runs on the latter, but it might on the former.
>>
>
> Support for Python on VMS has been dropped for v3.3 see
> http://bugs.python.org/issue11918
I imagine that VAXes running Unix went extinct in the wild long before
VAXes running VMS.
--
Grant Edwards grant.b.edwards Yow! Did YOU find a
at DIGITAL WATCH in YOUR box
gmail.com of VELVEETA?
[toc] | [prev] | [next] | [standalone]
| From | Roy Smith <roy@panix.com> |
|---|---|
| Date | 2012-07-30 16:50 -0400 |
| Message-ID | <roy-AF2F38.16504330072012@news.panix.com> |
| In reply to | #26262 |
In article <jv6ab7$jne$1@reader1.panix.com>, Grant Edwards <invalid@invalid.invalid> wrote: > I imagine that VAXes running Unix went extinct in the wild long before > VAXes running VMS. Of course they did. VMS is all about vendor lock-in. People who continue to run VAXen don't do so because they're wedded to the hardware. They do so because they're wedded to some specific VMS application (and the business processes which depend on it).
[toc] | [prev] | [next] | [standalone]
| From | Mark Dickinson <dickinsm@gmail.com> |
|---|---|
| Date | 2012-07-30 09:14 -0700 |
| Message-ID | <84e263f3-29ad-4e18-b5f4-65306abbae08@googlegroups.com> |
| In reply to | #26255 |
On Monday, July 30, 2012 3:16:05 PM UTC+1, Grant Edwards wrote: > The last ones I worked on that where the FP format wasn't IEEE were > > the DEC VAX and TI's line if 32-bit floating-point DSPs. I don't > > think Python runs on the latter, but it might on the former. For current hardware, there's also IBM big iron: the IBM System z10 apparently has hardware support for IBM's hexadecimal floating-point format in addition to IEEE 754 binary *and* decimal floating-point. But IIUC, a typical Linux installation on one of these machines uses the IEEE 754 stuff, not the hexadecimal bits. So unlikely to be an issue for Python. -- Mark
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web