|
|
|
|
|
by groovy2shoes
4639 days ago
|
|
> I'd think it would be faster because you're processing more data per clock cycle. This is only true if you happen to be dealing with integers larger than 32 bits (rarely in most of today's code). The real performance benefit of x64 has more to do with a larger number of general-purpose registers. More registers allow (but don't guarantee) programs to spend less time accessing main memory, thus gaining some speed. |
|