Re: 64 bit performance speedup over 32 bit by Carl
Carl
Wed Feb 08 18:40:06 CST 2006
<schouwla@yahoo.com> wrote in message
news:1139444844.309698.257280@g44g2000cwa.googlegroups.com...
>I am thinking about Intel Xeon 64 bit processors..
>
> Also nice to have / test : dual core or better.
IF your code:
- uses very large amounts of memory
OR - makes extensive use of 64-bit integer arithmetic
OR - makes extensive use of single-precision floating point arithmetic
then it's likely that a port to 64 bits will have a significant impact on
performance. If your program can effectively make use of a very large
number of threads, then a port to IA64 might be beneficial since today IA64
systems are available with far more CPUs than x64 systems.
Of course, there's nothing like profiling your own app on 64 bit hardware to
know for sure.
-cd