All,


Does anyone know how much performance speedup I can expect by using 64
bit C++ / Windows XP 64 bit over the 32 bit versions?

Did anyone test this under Visual Studio 2005 or Intel C++ 8.1/9.0 ?

My application domain is montecarlo simulations but any test would be
great.

Regards
Lars Schouw

Re: 64 bit performance speedup over 32 bit by Simon

Simon
Wed Feb 08 01:42:25 CST 2006

Ask me again in 6 months and I will let you know :)

Which 64-bit processors did you have in mind?



Re: 64 bit performance speedup over 32 bit by schouwla

schouwla
Wed Feb 08 18:27:24 CST 2006

I am thinking about Intel Xeon 64 bit processors..

Also nice to have / test : dual core or better.
Lars


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



Re: 64 bit performance speedup over 32 bit by Alex

Alex
Thu Feb 09 02:56:08 CST 2006

schouwla@yahoo.com wrote:
> Does anyone know how much performance speedup I can
> expect by using 64 bit C++ / Windows XP 64 bit over the
> 32 bit versions?
>
> Did anyone test this under Visual Studio 2005 or Intel
> C++ 8.1/9.0 ?
>
> My application domain is montecarlo simulations but any
> test would be great.

There's good site: www.spec.org. They produce CPU (and
others) tests to benchmark various parameters. Many hardware
sites use SPEC2000 CPU test in their reviews. You can search
directly spec.org database, however it's not much user
friendly and you will need to do comparison by yourself.
Alternatively, go to your favorite hardware site and look
for 64-bit CPU reviews.