Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
You really need to read the article again. The tests were not just opening apps. iMac performs faster on several CPU tasks such as iTunes encoding which has nothing to do with SSD.

Uh huh. And those encoded tracks that the benchmark is picking up - where exactly are they being written to?
 
I gave up a little on the speed to get the storage of a 1tb drive, i'm in no hurry, plenty fast for me
 
It's not the fastest "iMac" ever, it's the fastest "Mac" ever.

But it's not. It's the fastest mac they've TESTED. Do they make that claim in their article? No. Do they even mention the 12 core MP, which likely trounces the top iMac on this benchmark? Again, no.


its the fastest mac ever? by standard configuration or how do they judge that?
12-Core Mac Pro with SSD 16-32gb of memory?

:confused:

It's not even by standard config since they tested the iMac with SSD.

I'm pretty sure it's actually beating a 12-core Mac Pro, which is rather impressive.

Based on what? Their graph and the article itself clearly say 6 core repeatedly with no mention of the 12 core.

Yes. If you read the article carefully it says that it beat Mac Pro on iTunes encoding test as well, which has nothing to do with drive speed.

What is iTunes supposed to prove? iTunes is horribly encoded and only uses one core to do anything. Get a real audio/video rendering app that uses all cores and you'll see a big difference.


You need to re-read the article again.

Actually no, turns out he was the first one to figure out that apple ships a 12 core and MR is making the "fastest mac ever" assumption based on a comparison to a 6 core. Re-read his post again.
 
st one to figure out that apple ships a 12 core and MR is making the "fastest mac ever" assumption based on a comparison to a 6 core. Re-read his post again.

Again, all of their tests were based on applications that don't use all 12 cores. In that case, a 3.33 GHz 6-core will beat a 2.93 GHz 12-core in tasks like iTunes encoding, which as you said, only uses 1 core.

But I agree. Its a dumb claim.
 
But it's not. It's the fastest mac they've TESTED. Do they make that claim in their article? No. Do they even mention the 12 core MP, which likely trounces the top iMac on this benchmark? Again, no.

It's not even by standard config since they tested the iMac with SSD.

Based on what? Their graph and the article itself clearly say 6 core repeatedly with no mention of the 12 core.

What is iTunes supposed to prove? iTunes is horribly encoded and only uses one core to do anything. Get a real audio/video rendering app that uses all cores and you'll see a big difference.

Actually no, turns out he was the first one to figure out that apple ships a 12 core and MR is making the "fastest mac ever" assumption based on a comparison to a 6 core. Re-read his post again.

So in conclusion the article was a total waste of time and space. It really said nothing other than that the latest xxx is faster than the previous xxx. Now that's a shocker!
 
BUT, I think they're right about testing the hexacore instead of the 12-core. I think the six core is actually faster at unparalleled tasks bc its clock speed is 3.33 GHz vs. the 12 core's 2.93 GHz.

For something that tries to pass itself off as a publication, wouldn't it make the most sense to compare both?
 
Put an SSD in a Mac Pro and then test.

Or run a properly multi-threaded task on it like rendering in almost any current day 3D application and the Mac Pro will run circles around the iMac.

It's nice to see the iMacs are doing so well overall, but let's not kid ourselves here. The Mac Pro still reigns supreme when it comes to raw performance potential.
 
I have a 2.53 GHz i5 MBP with 4GB of RAM... why is it that doing the exact same test on mine is like *16* times slower? I wouldn't expect it to quite compete, but I figured it might be half as fast, even a quarter as fast...

I think I have some kind of human-to-computer communicable virus that makes every machine I own rapidly deteriorate in performance.
 
I'm glad everyone seems to be on the same page. The new X is faster than the old X. This was a pointless article intended for views and really stirred us up. First time I posted on Mac Rumors...just fueled my hatred toward the notion that the Mac Pro is dead.
 
Its awesome to see an all in one computer to have this speed, but computer component manufactures are putting out new components every 4-6 months making computers faster while Apple updates their products every 8-12 months.

So in short this is the fastest Mac ever, for a few months. Good job everyone at Apple! :D
 
It's not the fastest "iMac" ever, it's the fastest "Mac" ever.

arn

Actually, it's the fastest iMac with SSD. The latest iMac with a standard SATA HDD is slower than the Mac Pro which only has an SATA drive.

Nowhere in the testing does it show the performance against a Mac Pro with SSD.

Flawed test.
 
Well, I knew that SSDs were faster given other videos out there, but seeing this was just WOW!

Me, i'm not concerned if it's the fastest mac ever b/c i'm not delusional enough to realize the next iMac rendition will be faster etc..etc.

BUT, as someone who has been hedging on removing my main internal sata drive for an SSD Drive. I'm not sold. I have a 2009 MPro and it's slower on opening files. To be honest, SSDs are still more expensive / GB, but if I can launch apps that much faster, it means I start work faster. Sure, it may be seconds, but over time, that adds up.

Add speed to the new features of Lion and my work productivity will go up.

I'm sold now.
 
Just Tried This Myself On My MBP 2011

Had to try this on my MBP 2011 with a crucial M4. All I can say is wow, that's pretty cool. 57 Apps opened in about 30 seconds...
 
Again, all of their tests were based on applications that don't use all 12 cores. In that case, a 3.33 GHz 6-core will beat a 2.93 GHz 12-core in tasks like iTunes encoding, which as you said, only uses 1 core.

But I agree. Its a dumb claim.

Not a whole lot of applications use 12 cores, much less 4. It's not a dumb claim, it's just pointless. Wow, a new cpu architecture with a higher clockspeed is faster than an older architecture at a lower clock speed in some tests? I never would have guessed.
 
The Mac Pro still reigns supreme when it comes to raw performance potential.

For those rare "properly threaded" tasks. ;)

The problem is that "properly threaded" somewhat implies that it's the skill of the programmers. Some applications have serial dependencies in their data which makes arbitrary multi-threading impossible.

A "properly threaded" application could be a video encoder. Many (most?/all?) video codecs have the concept of "keyframes" - a complete frame without any dependencies. These typically are placed every few handfuls of seconds in the stream. From one keyframe to the next, temporal compression is used to reduce the data rate.

Such a data flow is easy to parallelize to an arbitrary number of cores. You break the input into chunks based on the keyframe interval (if you have keyframes every 5 seconds, a one hour video is 720 chunks). You then start 720 threads to encode, and combine the results. (Realistically, you'll schedule the 720 threads a small number at a time, based on the number of cores that your have.)

Other applications are very serial. If you have a spreadsheet cell that uses the standard deviation of a set of cells as an input - regardless of how many cores you have you must wait for the standard deviation to be computed before you can start the next set.

Sometimes a "properly threaded" application is a "single core serial" application, because each bit of the application depends on an earlier calculation - and it cannot be sped up by adding cores. (Or, a huge amount of programming complexity can be added that produces a barely noticeable improvement in the overal speed.)
 
Don't agree

i would have said that the mac pro 12 core, 3.33 Ghz with 64 Gb ram, and 2 TB of SSD would have been faster
 
Not a whole lot of applications use 12 cores, much less 4. It's not a dumb claim, it's just pointless. Wow, a new cpu architecture with a higher clockspeed is faster than an older architecture at a lower clock speed in some tests? I never would have guessed.

I'm pretty sure a pointless claim is pretty dumb. But I'm pretty sure its also incorrect. Even a MP with a westmere processor with a couple of striped vertex 3s will beat a sandy bridge imac. Its pointless to compare an SSD equipped imac with a MP that only has a regular HD. Especially using a benchmark that relies heavily on drive speed.
 
Anyone want to see a faster iMac? I have a 3.4 i7 with an OWC Mercury Extreme PRO SSD in it. SATA III and over 500MB Sec Reads and Writes! will have 16GB RAM Next week. I know an aftermarket job but it is all possible
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.