|
|
| Welcome to the Mac Forums forums. Please read the FAQ if you have questions. Register to participate. |
|
|||||||
| TouchArcade.com - iPhone Game Reviews and News |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
|
|
#1 | |
|
macrumors bot
Join Date: Apr 2001
|
Real Life Mobile Penryn vs Merom Benchmarks
![]() Anandtech offers a direct comparison between the existing Merom processors that currently power the MacBook Pro line, and the just-released Mobile Penryn processors. Apple is rumored to be working on MacBook Pro revisions as early as Macworld Expo next week that use these new Intel processors. Anandtech was able to provide a direct comparison between the two processors: Quote:
Apple's MacBook Pro is currently available in 2.2GHz, 2.4GHz and 2.6GHz speeds. The last major revision of the MacBook Pro was in June of 2007. Article Link |
|
|
|
|
|
|
#2 |
|
macrumors Demi-God
Join Date: Aug 2007
Location: Seattle, WA
|
Here is hoping new MacBook Pros at Mac World, followed by new MacBooks and iMacs next summer.
Here is also hoping Photoshop adds SSE4 support for common filters. |
|
|
|
|
|
#3 |
|
macrumors 6502a
|
40%? drool
__________________
MichaelFlux.com
|
|
|
|
|
|
#4 |
|
macrumors 68040
|
10% on 3 hours.. not shabby.
__________________
Mac Mini G4 • MacBook Pro • iPod Nano "Good judgement comes from experience,experience comes from bad judgement. - Mark Twain |
|
|
|
| thejadedmonkey |
| View Public Profile |
| Find More Posts by thejadedmonkey |
|
|
#5 |
|
macrumors 6502a
Join Date: Jul 2007
|
|
|
|
|
|
|
#6 |
|
macrumors 68040
Join Date: Nov 2005
|
|
|
|
|
| gnasher729 |
| View Public Profile |
| Find More Posts by gnasher729 |
|
|
#7 |
|
macrumors 68020
Join Date: Dec 2001
Location: Claremont, CA
|
To me this chip revision is more about the 45 nm technology, with its associated chemistry change, and an incremental improvement in power management, and the SSE4 language for bleeding edge apps, which do not effect most people, are the geek-kicker. Pro apps.
The notable thing beside better power usage is far better likelihood of deeper back-end price drops due to far smaller die sizes. Given Apple uses long term supply agreements with back end discounts, this product was designed more for manufacturability than even for features, which are strong enough indeed. Apple is winning the vendor-supplier game, and Intel is reaping the benefits. Rocketman
__________________
Think Different-ly! ![]() Looking for an iPhone dev with way too much time on her hands for BASIC programs I have.
|
|
|
|
|
|
#8 |
|
macrumors 6502
|
now im no expert but werent the macbook pro's updated to santa rosa chips in june? or is merom another name for santa rosa.
http://www.macrumors.com/2007/06/05/...th-santa-rosa/
__________________
24" imac 2.4 ghz 12" G4 powerbook 1.5 ghz 15" unibody MacBook pro 4gig iphone -- Gone 8gig iphone 3g bmw parts extrodinaire |
|
|
|
|
|
#9 |
|
macrumors 6502
Join Date: Dec 2005
Location: New York
|
yea santa rosa is a subgroup of the merom processors.
Penryn is a new 45nm chip. |
|
|
|
| pianoplayer1 |
| View Public Profile |
| Find More Posts by pianoplayer1 |
|
|
#10 | |
|
macrumors newbie
Join Date: Jan 2008
|
SantaRosa is a platform
Quote:
Merom and Penryn are CPU families. It is up to intel to continue calling SantaRosa platform the new combination of Penryn + MCH + ICH. Cheers, |
|
|
|
|
|
|
#11 |
|
macrumors 6502a
Join Date: Apr 2007
Location: The Great State of Alaska
|
What applications/types of applications take advantage of this?
__________________
"People should not be afraid of their governments. Governments should be afraid of their people." "Si vis pacem, para bellum." - "If you wish for peace, prepare for war" Last edited by David G. : Jan 9, 2008 at 08:25 PM. |
|
|
|
|
|
#12 |
|
macrumors 601
Join Date: Jan 2006
Location: Redondo Beach, California
|
The SSE instructions are of most use to software that process large streams of audio or video media. Doing things like changing color spaces, scaling pixels or encoding a ripped CD to MP3
Apple might modify Core Image or other "core" libraries to use SSE4 and then software that uses these libraries would be able to take advantage without need to be changed. Right now I think Apple is the biggest user of these libraries with programs such as Preview, iPhoto, Aperture Garage Band and so on. I think Adobe uses their own image processing code. Use of SSE4 in software would have to wait until the SSE4 hardware is widely available or else how could Apple run a beta test? |
|
|
|
|
|
#13 |
|
macrumors newbie
Join Date: Dec 2007
|
|
|
|
|
|
|
#14 |
|
macrumors newbie
Join Date: Mar 2005
|
"...40% improvements in applications that support the SSE4 instruction set."
Damn. That's not bad. Wait, what's SSE4 Instruction set?
__________________
Better Mac Rumors. Information straight from the sorcerer. |
|
|
|
|
|
#15 |
|
macrumors newbie
Join Date: Mar 2005
|
Oh, my bad, just read all the posts. Wednesday hump!
__________________
Better Mac Rumors. Information straight from the sorcerer. |
|
|
|
|
|
#16 |
|
macrumors 6502a
Join Date: Jan 2007
Location: uh-ha-yuh, USA
|
What kind of battery is in those Dells?!
4.5 to 7 hours of run time seems like a dream! |
|
|
|
|
|
#17 | |
|
macrumors 68040
Join Date: Nov 2005
|
Quote:
These things take time. SSE4 has two major components: One is a more complete set of vector operations, which makes automatic vectorisation possible. What that means: Instead of the programmer having to write code specifically for the vector unit, he or she writes ordinary code and the compiler translates it into vector instructions. However, that fails when something that the code does is not available as a vector instruction. SSE4 is much more complete, so a lot more code can be translated automatically. That is something that applications like Photoshop would benefit from. The other component is highly specialised instructions for video encoding. The most time consuming part of video encoding by far is "motion prediction", where the encoder takes a tiny bit of one frame and tries to find a similar image in a previous frame. For example, there is one instruction that does the following: Lets say you have four pixels abcd. And another eleven pixels ABCDEFGHIJK. This instructions calculates the difference between a and A, b and B, c and C, d and D and adds them up. Then it calculates the difference between a and B, b and C, c and D, d and E. Then between a and C, b and D, c and E, d and F and so on. The result is eight sums of four differences, and each of these 32 differences is the absolute value of the difference between two values. Without a vector unit, that would be 32 subtractions, 32 absolute values, and 24 additions - 88 operations in total. Probably a dozen vector instructions without SSE4. With SSE4 it is one instruction. That makes motion prediction a lot, lot faster. You will benefit from this eventually, but not right now. |
|
|
|
|
| gnasher729 |
| View Public Profile |
| Find More Posts by gnasher729 |
|
|
#18 |
|
Guest
Join Date: Apr 2004
Location: Gallifrey -- Capitol City, Prydonian Sector
|
Well, I want to buy a new iMac, so I hope it gets upgraded to Penry-class CPUs. C'mon Steve-O !!!
|
|
|
|
|
|
#19 |
|
macrumors member
Join Date: Jul 2006
|
i'm not really familiar with this...does anyone know what applications support this instruction set? do any of the major Apple apps?
|
|
|
|
| acslater017 |
| View Public Profile |
| Find More Posts by acslater017 |
|
|
#20 |
|
macrumors regular
Join Date: Nov 2007
|
Do NOT expect 40% performance increases or you'll be very dissapointed with Penryn. There are currently little to no applications that have SSE4 support and there probably won't for quite some time. The reason is because the vast majority of machines out there do not support SSE4 because it's coming new with Penryn. Software usually lags behind hardware in terms of advancement. If you get a Penryn notebook, expect about 1-8% during normal usage, which honestly, for normal tasks, it's barely neglegible. For Intel, Penryn is nothing more than a "refresh" of the Core 2 line. If we see any serious breakthroughs it won't be until the end of the year or beginning of 2009 with Nehalem. Penryn's advantages come more from it's battery life.
__________________
15" Unibody Macbook Pro - 2.66 GHz, 4GB DDR3 RAM, 9400M/9600M GT, 320 GB HD Desktop: Core 2 Duo 4.0 GHz, 4GB DDR2 RAM, Radeon HD 4870 1GB, 640 GB HD |
|
|
|
|
|
#21 | |||||||||||
|
macrumors 6502a
Join Date: May 2007
|
Quote:
![]() What really suck in the MBP is that I got 128MB vram, which is ****ing retarded. The 1440x900 resolution is lame, TN-panel sucks ass, what is this bright spot which seems to be behind my pixels?!, bigger and 7200 rpm harddrive would be nice aswell. 256MB vram, IPS-panel and 1680x1050 would be nice, a faster CPU isn't. Quote:
Quote:
Quote:
Quote:
Probably Yes, I think so. Of course it is. Yeah. OS X whatever may be compiled with support for SSE4 instructions I guess. I don't know if one can compile with support for it without requiring it thought. I know compile stuff with GCC for a lowest common instruction set say i386 and then add optimizations for a higher one say i686 where available. I'm not sure the same can be done for SSE instructions. I guess it should be possible but if not this won't help much at all. Quote:
Quote:
Quote:
![]() Some new instructions may be used by old functions I guess. Quote:
Quote:
Faster? Yeah, if heat allows it, which it probably does. Say 2.8 and eventually 3 GHz. Cheaper? Then the old series? Doubt so, cheaper than they are as new? Yes, of course, but Apple doesn't lower prices anyway. Quote:
__________________
Apple makes an half decent OS, unbalanced low-end expensive computers but with well designed cases and user interfaces. |
|||||||||||
|
|
|
|
|
#22 | |
|
macrumors 6502a
Join Date: Jul 2003
Location: high-rise in beautiful bethesda
|
Quote:
What i meant to say is that as the mfg process ramps up Intel gets better yields and greater production capacity and is then able to introduce new speeds, cut prices, and bring out other products based on that manufacturing technology. We as Apple customers probably won't get an immediate price decrease when it happens - instead we get speed bumps, new products, etc. So 45nm will probably look better in 6 mos is what I really mean. Last edited by tristan : Jan 10, 2008 at 01:28 AM. |
|
|
|
|
|
|
#23 |
|
macrumors 6502a
|
Not Compelling
These are not compelling performance numbers to me.
1 to 8%. I have seen these estimates before and this seems accurate. This is not a noticeable performance increase. Glad I bought the MBP 2.6 17" high res last month when I needed it. I think MacWorld will be interesting, can't wait, but my gut tells me it will be interesting for many products besides the MBP update. Just my gut. I could be wrong on this. |
|
|
|
|
|
#24 |
|
macrumors 6502a
Join Date: Jun 2007
|
something to share
I made this for myself but I thought I'd share to help people out..
|
|
|
|
| winterspan |
| View Public Profile |
| Find More Posts by winterspan |
|
|
#25 | |
|
macrumors 68040
Join Date: Jan 2004
Location: Vienna, VA
|
Quote:
Laptop designers are not going to have to wait for Montevina in order to use a Penryn processor.
__________________
In theory, theory is the same as practice. In practice, it isn't. |
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|