First Round of AMD Athlon 64 Reviews In
wrinkledshirt writes "Here's a bunch of AMD Athlon 64 reviews, courtesy of 8Dimensional." AcesHardware and HardOCP match the Athlon 64 line against the Pentium 4 Extreme Edition. amdmb, FiringSquad, and SharkyExtreme take a closer look at the FX-51. AthlonXP and PCStats have glowing reviews of the chips. Digit-Life compares the new Athlon 64 with Opteron and a Pentium 4. LegitReviews and Overclockers.com.au also both have succinct reviews of the FX-51. Overall the reviews speak very highly of the Athlon 64 and the FX version of the chip, with the only downside being the cost, especially of the FX chip.
Is it possible to have a first round of reviews after an earlier story about Athlon 64 reviews?
fp
Reliable, Great Value Hosting: $7.95/mo 2.4G/120G
Give it a bit more time. The motherboards can still be tweaked to get more performance out of the system. I think we should wait a bit before really making decisions, and get in a whole load more real world testing too.
Benchmarks are not always entirely, although often can be, illuminating.
The socket format will be changing soon, and once the upcoming changes happen, things will be much better. You'll then be able to use non-ECC memory, and the motherboards will be less expensive.
Until then, yeah, the FX is freaking fast, but waaaaay overpriced, so don't bother.
A 64-bit address space is probably a good thing once a program is allocating 2GB or more of address space.
Are avalible from SuSE, Gentoo, and Debian!
SO if you are complaining "theres no 64 bit os yet", stop complaining, leave the evil empire behind and see the REAL power of opensource.
while it's very likely that this is the case for the reviewing samples (probably rushed out as fast as possible, I can't believe that Intel had plans for the EE all along given that there were 0 leaks) given that this is a paper launch by the time the EE will actually be available to customers I'm sure the MP support will disappear.
-- the cake is a lie
Not quite.
The AMD64 core uses a 40-bit physical memory address space, which is 1 Terabyte. It also uses a 48-bit virtual memory address space, which is 256 Terabytes.
A full 64-bit physical memory address would allow for 16 Exabytes of memory.
SCREW THE ADS! http://adblock.mozdev.org/ Proud user of teh Fox of Fire - Registered Linux User #289618
The multi-cpu support may or may not be still enabled, but the P4 EE has a different pin count than the XeonMP, so you wouldn't be able to use it in the XeonMP boards anyway.
We've got a couple of Opterons at work, one for 32-bit compatibility testing, and another for the AMD64 port. It's pretty cool to see this in Python on SuSE Linux 8.2 beta:
SuSE Linux 9.0 for AMD64 is supposed to ship next month. Hopefully, it will be a little cheaper than RHEL 3.0 for AMD64, which will be more than twice the price of RHEL 2.1 for x86!I am still blown away that the FX did better then then 3.2 P4.
Proper benchmarks include not using a 64bit beta stupid o/s like windows, a properly optimized linux (suse 64 or gentoo) and applications built for the chip. Openoffice, kde and kde apps, mozilla, some miscellaneous 3d engines running some impresive demos, maybe tenebrae quake. Tenebrae quake is great being that its open source and takes a huge amount of gfx and proc power.
The results? The 64 bit version took nearly HALF THE TIME of the 32 bit version. This is the kind of thing we have to look forward to in some things (MP3s, video encoding, etc).
The Athlon 64 is fast in 32 bit mode, and can beat a P4 many times. But when the 64 bit code comes along, the P4 will be taking one hell of a beating.
PS: Sorry I don't remember which review had this test. I don't have time to go hunting for it right now.
Comment forecast: Bits of genius surrounded by a sea of mediocrity.
Found it! It was Anandtech. Check out the bottom of the 32 bit vs 64 bit page of the review.
Comment forecast: Bits of genius surrounded by a sea of mediocrity.
Organic integrated circuits are produced without using fertilizer or pesticide.
The point about mmap(2) is to let the system (the VM subsystem of the kernel) manage the caching for the userland processes using it, avoiding extra copies to/from buffers in userland and eliminating in several cases the need for custom caching code (processes don't have to worry about data being available in RAM: the kernel automatically takes care of that when needed).
You don't need gobs of memory to do this, but in order to work on large amount of data you need a large address space, which is what 64 bit architectures provide. Of course, the more physical memory you have, the less the kernel has to swap pages in and out, but the main point is not that.
A little example to clarify: in order to keep things simple (instead of needing two intermixed caching systems, one for the VM and one for disk accesses), the Hurd just mmaps the whole partition. This means that the maximum size of a partition has an upper limit given by the size of the addressing space, which is 4GB on 32bit architectures (actually less, since in that address space you have to keep also the code that uses the mmapped data, so it's more like 2GB/3GB). A 64bit architecture comes very handy here, given the current size of hard disks.