Python Forum
Python 3 x86 vs x64 Inquiry...
Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python 3 x86 vs x64 Inquiry...
#11
(May-30-2017, 07:28 PM)Larz60+ Wrote: well, for one, the range of 64 bits is oxffffffff or 4,294,967,295 decimal
and 32 bits is 0xffff or 65,535 decimal

Uh? 0xffff is 16 bits, 0xffffffff is 32 bits (a hex digit covers 4 bits).
Unless noted otherwise, code in my posts should be understood as "coding suggestions", and its use may require more neurones than the two necessary for Ctrl-C/Ctrl-V.
Your one-stop place for all your GIMP needs: gimp-forum.net
Reply
#12
right, I'm losing my bits
Reply
#13
Oh, I thought you were losing your shift :)
Unless noted otherwise, code in my posts should be understood as "coding suggestions", and its use may require more neurones than the two necessary for Ctrl-C/Ctrl-V.
Your one-stop place for all your GIMP needs: gimp-forum.net
Reply
#14
When 64 bit processors compatible with the x86 architecture were introduced, they were referred to as x86-64. x86-32 (and x86-16) were used for the 32 (and 16) bit versions. This was eventually shortened to x64 for 64 bit and x86 alone refers to a 32 bit processor. The 32 bit processors are designed to handle a limited amount of physical memory maximum of 4GB but 64 bit can handle high memory utilizing 8,16 and some even32 GB. On a 64-bit Windows you can use either version. On a 32-bit Windows you should use only x86 obviously.
Reply
#15
Maybe at some point you want to access dlls under Windows. In this case the architecture of Python must be the same, as the dll file.
If the dll file is a 32 bit library, you need 32 bit python.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020