Apple MacBook Pro 'Fastest Windows XP Notebook'? 360
rgraham writes "The Register has a great opening line in a recent article, "Want the fastest Windows XP Core Duo notebook? Then buy a Mac. According to benchmarks carried out by website GearLog, Apple's MacBook Pro running Windows XP is a better Adobe Photoshop rig than any other Core Duo laptop on the market." GearLog ran the same tests that were run by PC Magazine with the Mac coming out on top."
Best tool for the job (Score:5, Insightful)
-nB
Find out next year (Score:5, Informative)
That will have to wait until next year, sine Adobe has stated that the Intel version of Photoshop for MacOS X won't be available until next year.
Re:Find out next year (Score:2, Informative)
Re:Find out next year (Score:3, Interesting)
I wonder if Adobe was quite as fanatical about doing SSE optimizations on their code on Intel as they were with Altivec on PPC. As others point out, Apple always used them as a benchmark so their code was definitely optimized. I wonder if they did that to the same extent on Windows, where they got considerably l
Re:Find out next year (Score:3, Informative)
--jeffk++
Re:Best tool for the job (Score:2)
*dons tinfoil hat*
Re:Best tool for the job (Score:5, Interesting)
Re:Make up your mind, damnit! (Score:3, Funny)
Overall a perfectly cromulent post.
Re:Best tool for the job (Score:2)
Re:Best tool for the job (Score:5, Informative)
Re:Best tool for the job (Score:3, Insightful)
Re:Best tool for the job (Score:3, Insightful)
Isn't it a bit deceptive to label "Good UI" as "pretty colors"? It's been proven that the OSX UI guidelines, look and feel, is MUCH better than both Windows and especially Linux.
It doesn't matter a damn that a computer or program is 50% faster, as most of the time the process waits on user input... it's making the users more productive and happy tha
Re:Best tool for the job (Score:3, Insightful)
And don't hate it just because it's beautiful
Cheers.
Re:Best tool for the job (Score:5, Informative)
I'm not disputing this, but I'd like to provide some context so people aren't left with the impression that "Apple's programmers are st00pid n00bs." There's at least three decisions that negatively impact OS X's system call performance, but that provide wins in other areas.
1) Mach/FreeBSD system call disambiguation. OS X has to support both Mach and FreeBSD system calls through the same trap interface. Determining which you have isn't cheap, but the win is apparent - how many Mach messages per second does your conventional UNIX benchmark at? Features don't come for free. This is fixed overhead which will be especially apparent with "fast" system calls.
2) 4/4 memory split. A system call requires a context switch to and from the kernel's own address space. I'm not sure about other UNIX flavors, but Linux in particular (usually) maps the kernel's address space into each process with a 3/1 split, which is faster but has an obvious downside - 25% less address space for the process and 75% less for the kernel!
3) Dynamic library binding. OS X is unusual in that every library is always dynamically bound, which adds overhead for every call, but gives you all the benefits of non-static libraries (code sharing, security, etc.) Benchmarks often don't take this into account.
The slowest part of the system I have found is the VM subsystem, which absolutely crawls. I wrote some fairly I/O intensive code with a number of back ends.
There's a few things I've found that impact OS X's I/O negatively:
1) Spotlight wants to index any file you opened for writing and then closed. That's obviously going to incur a cost.
2) Unified buffer cache - cacheing reads in the VM system. For a linear read of a huge file, this only hurts; it can be turned off on a per descriptor basis, but code compiled naively for OS X won't have bothered to do that.
3) Bugs. There seems to be a bug where a program doing linear I/O can monopolize the I/O system, which improves performance for that process but decreases apparent responsiveness.
Re:Best tool for the job (Score:3, Insightful)
Re:Best tool for the job (Score:3, Informative)
Re:Best tool for the job (Score:3, Interesting)
How many Mach messages per second does my conventional UNIX benchmark at? None. It can't. Does this preclude me from doing anything I need
Re:Best tool for the job (Score:5, Insightful)
There's a lot of historical decisions of dubious validity in retrospect, but there's also an excellent technical defense that can be made for Mach. In short, Mach is really cool. Mach IPC makes signals, sockets, pipes, shared memory, SysV IPC, etc. look positively clumsy. What's FreeBSD's answer to the Mach Inteface Generator? CORBA?
So OS X gets a lot of mileage out of Mach messaging - AppleEvents, distributed notifications, run loops, etc. If OS X processes seem good at talking to one another - think VoiceOver, Spotlight, the window server, iLife's media sharing, even copy and paste - it's due in part to the fast, flexible IPC mechanisms enabled by Mach.
The 4/4 memory split only applies to 32 bit environments. Haven't the G3/G4/G5 been 64 bit?
In principle, yes; in practice, OS X has a 32 bit kernel even on 64 bit machines, not least of all for driver binary compatibility. You want to know the win here - take a look at the binary compatibility driver story on 64 bit Linux or 64 bit Windows. Apple allows 64 bit processes on Tiger without breaking everyone's hardware.
(Incidentally, only the G5 is 64 bit.)
Are you suggesting that FreeBSD, Linux, Windows, or any other modern operating system doesn't use dynamic libraries?
Yes. Benchmarks typically compare statically linked libraries on Linux (because they're faster) to dynamically linked binaries on OS X (because that's all Apple ships).
Yes, there is an advantage to not using the buffer cache in some cases, something you can do in linux with the O_DIRECT filedescriptor flag
Thanks, I wasn't familiar with that flag on Linux. From googling, it looks like it does somewhat different things [iu.edu], in particular, not speeding up sequential file access.
In any case, I'll certainly agree that there Linux-specific filesystem optimizations; I was just commenting on a technique I found to give a substantial boost to OS X programs with sequential access patterns.
Re:Best tool for the job (Score:4, Insightful)
Re:Best tool for the job (Score:2)
Re:Best tool for the job (Score:2)
Nevertheless, I still triple-boot that system: Ubuntu for almost everything, OS X when I want to use iTunes, QuickTime, etc, and Mac OS 9 for old games.
Re:Best tool for the job (Score:2)
Re:Best tool for the job (Score:2)
Re:Best tool for the job (Score:5, Funny)
Re:Best tool for the job (Score:2)
Re:Best tool for the job (Score:3, Insightful)
I suppose you could do
AMD (Score:4, Interesting)
Re:AMD (Score:5, Informative)
Re:AMD (Score:3, Insightful)
That doesn't make comparisons impossible. Who cares how many cores there is. People want speed.
Re:AMD (Score:3, Informative)
Peter.
Re:AMD (Score:3, Interesting)
Re:AMD (Score:4, Informative)
Re:AMD (Score:2)
My question is, is the CoreDuo 64 bit?
No, it isn't. However, for most users, those extra bits are rather pointless - the notebook will run programs just as well as todays 64 bit processors for the lifetime of the laptop.
I'd love a 64 bit notebook, for binary compatibility with 64 bit servers.... however, for almost everyone, that is irrelevant. And while I want 64 bit, I don't think I'd do the sacrifice in other areas and get an AMD-based laptop - the surrounding technologies and the chip itself jus
Re:AMD (Score:5, Informative)
AMD will be releasing 25W Dual-Core Turions in May, running with DDR2 memory (which will save a few Watts over DDR memory).
Yonah is 31W (TDP, actual power consumption is lower. Same goes for AMD of course.). AMD includes half of a northbridge on their processor as well.
Of course, AMD's 25W Turion X2s only come in 1.6GHz and 1.8GHz variants. The 2.0GHz and 2.2GHz versions are 35W, but still comparable in power consumption to Yonah. The interesting thing is that this is at 90nm. If AMD has any of the hi-speed, low-power-consumption features of IBM's 65mn process, then next year could be very interesting however.
Doesn't negate the fact that Intel was there first, nor that AMD isn't overtaking them but merely having a competitive offering in the mobile arena.
fastest in one test (Score:5, Interesting)
Re:fastest in one test (Score:4, Funny)
Re:fastest in one test (Score:3, Funny)
I'm just waiting for the
And please mods, realize that suggesting a support group for a file format is indeed a joke.
Re:fastest in one test (Score:2)
I would be curious to know what aspects caused the slow down. Maybe the lack of a properly supported (by the OS, as opposed to Microsoft) graphics card.
Re:fastest in one test (Score:2)
Re:fastest in one test (Score:3, Insightful)
Re:fastest in one test (Score:2)
Anyways, now that Macs and PCs are the same hardware, running a hardware comparo test seems pointless to me. CPU-bound apps will be the same on both, other than when one manufacturer gets the jump on another in shipping the latest Intel processor or third party graphi
Benchmarking the compiler (Score:3, Insightful)
Don't know how fast the code generated by the Visual C++ compiler is, but I've read that the proprietary Intel compiler generates much faster code than gcc, which (I think) is the default compiler for OS/X apps these days. Does that bode poorly for the Mac in any benchmark wars?
Re:fastest in one test (Score:5, Insightful)
This is weird... (Score:3, Funny)
Re:This is weird... (Score:2)
"Your decision to use Intel's chips instead of PowerPC chips was a wise one" - MS
"Your decision to use our chips instead of PowerPC chips was a wise one" - Intel
Microsoft is indifferent to Apple's architecture - MS has always coded for x86 chips, and most likely always will (you know, computer-always, meaning till that big thing that's so big it shoul
Re:This is weird... (Score:3, Funny)
"Your decision to use our chips instead of PowerPC chips was a wise one" - Intel
"Don't the door hit you on the way out" - IBM
Bah! Plugins are not a real benchmark... (Score:4, Interesting)
Still - yet another reason to not dismiss windows-on-mac-hardware efforts.
Re:Bah! Plugins are not a real benchmark... (Score:2)
Has anyone confirmed the process is not against the Microsoft Windows EULA? If it's not in there today I can image a new paragraph in the near future.
Re:Bah! Plugins are not a real benchmark... (Score:2)
Why would Microsoft care? They would be happy to find a new group of would-be customers going out to the store to buy a copy of Windows. The installation procedure is probably not supported, but that doesn't make it "illegal."
Re:Bah! Plugins are not a real benchmark... (Score:2)
Microsoft doesn't make computers. They sell Windows.
They have nothing to lose on this.
Commercial Offering for Dual Boot (Score:5, Insightful)
There's an opportunity for business to finally transition to a quality hardware platform/OS, and I hope someone steps up to the plate to make a formal solution in this area (not that I don't appreciate the current hacks offered).
-- Jim http://www.runfatboy.net/ [runfatboy.net]
Re:Commercial Offering for Dual Boot (Score:2)
Re:Commercial Offering for Dual Boot (Score:4, Insightful)
Thats really not a fair comparison I know. But people will pay a premium for a preconfigured system with good support. Hell I quit building my own machines are work because I just have the time to support them, and just order from dell (work for a university grant, so dell sees us as the university which means we get top tier support)
Re:Commercial Offering for Dual Boot (Score:2)
Because lots of people -- namely, many Windows and Mac users -- are scared of free software. They're expecting some kind of "catch" (time-expiring demos, nagware, spyware, etc.) so they stay away because it's free.
Put it in a nice, glossy box on a shelf at Best Buy and only then will they consider it. It's sad, but true (and part of the reason so many are still skeptical about Free [libre] Software).
Why photoshop? (Score:5, Interesting)
Re:Why photoshop? (Score:2)
Re:Why photoshop? (Score:2)
Mac benchmarks have always been Photoshop-centric, going back for years. (decades?) Long before Macs were dual core, anyways.
In reality, using a single application to benchmark is ridiculous. I think they do it because the Photoshop product is historically tied to the Mac, and the Mac version is always carefully optimized for it.
Re:Why photoshop? (Score:2)
Macbooks are also the most expensive (Score:5, Interesting)
Re:Macbooks are also the most expensive (Score:2)
would even venture to guess that the Macbooks are gaming quality
That is if the video drivers ever start working!! Just out of curiousity, what errors were feedbacked when ATI's catalyst drivers were tried?
Re:Macbooks are also the most expensive (Score:2)
The ATI card that supports EFI booting identifies itself as a UGA card rather than VGA. Chances are, once there are EFI based ATI drivers they should work though.
The Reg sexed up our dossier (Score:5, Informative)
Over here at PC Mag/Gearlog (it's the same thing - Gearlog is the blog of PC Mag) we like to say that our tests show Apple makes a "fast" Windows machine, not "the fastest." As somebody else pointed out, while the MacBook squeaked out a win on the Photoshop test, it came in behind other Core Duo laptops on the Windows Media Encoder test. But the news in my mind isn't a one-second difference in this or that. It's that Apple's machines run Windows comparably to the best designed-for-Windows machines. That bodes very well for folks who want to have the best of both worlds by running both OSes natively.
We couldn't run 3DMark, Sysmark, etc. because of the missing video drivers - wouldn't have been fair. The Photoshop and Windows Media tests were the only ones of our standard benchmark suite we thought would generate results that made any proper sense, because they hit processor/disk/RAM rather than video.
Also, for the AMD fanboys, we haven't tested any AMD dual core notebooks yet, so we didn't have the data to compare those.
If you haven't already, read our original story: http://gearlog.com/blogs/gearlog/archive/2006/03/2 1/8212.aspx [gearlog.com]
Re:The Reg sexed up our dossier (Score:2)
Hmm...what exactly do think is different between an Intel box designed to run OSX and one designed to run WinXP? I really don't see how the OS has much sway here. After all, you can run Linux on an Intel box (desinged to run WinXP) and it works hot shit. OSX is based on BSD as I understand it, so why should it be any different?
Re:The Reg sexed up our dossier (Score:4, Interesting)
Running these benchmarks also allowed a direct comparison between Apple hardware and other manufacturers' that always used to be cloaked a little by the difference in OSes. Now of course you can argue that the driver situation may have affected our results, but I hope this will be only the first of many data points. It's a start.
Why? (Score:2)
Can anyone name one reason (not "because its an Apple") as to why the technology in the MacBook should run faster then in an equivalently equiped PC? And I don't believe EFI has anything to do with it ei
Comment removed (Score:4, Funny)
Re:Why? (Score:5, Insightful)
Why should the MacBook be any faster then any other DuoCore notebook out there.
Because each laptop uses slightly different hardware. They use different brands, with different specs, and in different configurations. For any given test, one will win. If you read the article you'd know Macbook Pros scored about the same as the best other Duo Core notebooks out there. Sure they took first in a given photoshop test, but not by a really significant margin. They did worse in some other tests. There are no conspiracies here.
People willfully misinterpreting this test should be ashamed of the FUD they are spreading. This does not prove MacBooks are the "fastest" laptop. It proves they are (aside from the non-existant video drivers) as good as anything else out there for running Windows. This is good news for people who plan to dual boot. This is a good sign for those interested in emulating/VMing Windows. It is just trivia to anyone else.
Currently (Score:4, Interesting)
Other issues that are less important are:
*Trackpad does not work
*That little camera doesn't work
Adoption (Score:2, Interesting)
I am, interested, however, in hearing about it as it pertains to adoption by non-techies. I read /. but I've never had a dual-boot system myself. I have a Powerbook, an Ubuntu box, and my company thinkpad, so I've never needed
What a retarded article (Score:5, Insightful)
The appropriate conclusion here is "Macbook Pro runs XP as fast as the fastest PC with the same CPU and chipset", to which I would say, duh!
Photoshop Test (Score:4, Interesting)
The point is that today's computers are overpowered. The now-deprecated Quad 2.7 G5 is vastly more powerful than any Photoshop jockey needs. Unless you're rastering 3D shiz or crunching a full length DVD-quality movie (neither of which requires Photoshop) it's just gonna be an issue for most users.
Re:Photoshop Test (Score:2)
It's a lot harder to benchmark "real world" use.
Re:Photoshop Test (Score:3, Insightful)
Photoshop used to be a great benchmark, because computers used to be sllllooowwwwww. Remember when Photoshop power users could drop a few thousand on a fancy DSP card for their Mac? In fact a couple of Macs (the Centris 660Av and the Quadra 810AV ca. 1992 or so) came equipped with a 25/33 MHz DSP on-board to handle certain realtime stuff, like softmodem. Adobe didn't waste any time supporting this DSP to accelerate Photoshop, with a pretty sizable improvement. The point is, people used to
Why a laptop? (Score:5, Insightful)
Yay benchmarks.
Apples and oranges, truly (Score:4, Interesting)
A more valid comparison would be SPEC tests between the MacBook and other machines. What you'd likely see is, given the same hardware, they perform exactly the same -- which is the point.
As someone pointed out, most geeks would be interested in a box that runs both XP and Mac OS equally well. Apple is in a big transition year: with Vista delayed and the switch to Intel, they finally have means to court a massive number of geeks to their platform. Some random people claiming the MacBook is somehow "faster" than PCs with different hardware damages this. Geeks will look at the specs and know it's not a valid comparison. Mac fans just need to sit tight and let the benchmarks speak for themselves.
Re:Apples and oranges, truly (Score:3, Informative)
A more valid comparison would be SPEC tests between the MacBook and other machines. What you'd likely see is, given the same hardware, they perform exactly the same -- which is the point.
Re:Ummm... (Score:4, Interesting)
Re:Ummm... (Score:3, Interesting)
Re:Ummm... (Score:3, Funny)
Re:Ummm... (Score:4, Insightful)
And a 35mm image can be printed at 20x30 and look better than an 8MPixel digital sensor image. Untill you specify the specific cameras, lenses, tripods, subject, lighting, scanner, scanner software, raw converter, film, processing lab, camera settings, postprocessing steps, printing technology, and intended use, it is you that's trolling. In the mean time I'll continue using what works for me.
It really depends on the intended use of their photos. Newspaper and portrait photographers shoot low-rez because that suits their needs. You can be sure though that PlayBoy's feature photographers are shooting full-frame digital at least (although I suspect medium-format Kodak Portra NC judging by the contrast, tonality, and colour balance).
I often choose 35mm Print film because it gives me resolution slightly better than I'd get with a 1Ds, but much nicer exposure lattitude. Plus I get smaller depth of field than with a sub-frame digital, without having to shell out $20,000 for a 1Ds and a bunch of new lenses.
You seem to be confusing newspaper photographers with all pro photographers. It depends on their intended use. Fashion photographers are just starting to go digital (from MF) with the introduction of full-frame digitals and digital backs for MF.
People who think that how they use their camera is how everyone uses their camera, and what they expect from prints is what everyone expects from prints get on my nerves.
Re:How things change. (Score:2)
Re:How things change. (Score:2, Informative)
The other Technologies before mentined, AGP, PMT, SMP Protected memory never said so. About intel, well different story, but with your comment you are just trolling (me thinks).
Re:How things change. (Score:2)
Re:How things change. (Score:2, Informative)
Re:How things change. (Score:3, Informative)
A few years ago, the Mac crowd said there was no need for stuff like PCI, AGP, PMT, SMP, protected memory, Intel, USB, etc. etc....
Ummm, what? More than a few years ago macs already shipped with USB and PCI by default. Heck macs had USB before anyone else was producing a significant number of peripherals for it. The only item on this list I ever heard people argue against was Intel (as in processors).
But just how is a Mac running x86 and Windows XP, a Mac?
Macintosh is a brand name. How is a Dell Ins
Re:How things change. (Score:2, Informative)
Ooops, they're doin' it again :(
Apple dumped Pc Card in favour of ExpressCard way too early, imho.
Sure, for many purposes (Ethernet, modem, Usb, Firewire...) Pc Cards are quite obsolete today, because all this features come free with every notebook (except for the modem in MacBook Pro)
Here in Old Europe, however, GSM/Umts co
Re:How things change. (Score:2)
Re:How things change. (Score:2)
And what does certain hardware do whether or not something is a Mac?
Re:How things change. (Score:5, Insightful)
Although Apple may not have been the first to use USB, they were the first to remove the legacy ports to force peripheral and accessory manufacturers to introduce USB based devices. They were also one of the first computer manufacturers to encourage the ports use. I remember installing multiple labs of Dell Optiplex Gn+ and GXi workstations with USB disabled by default in the BIOS. It was until a year or two later that USB was enabled by default on all of their Optiplex models. Plus, Microsoft's OS USB support really didn't work well until Windows 98 (for DOS based) and Windows 2000 (NT based OS) were released.
Re:How things change. (Score:3, Insightful)
Apple was the vendor that really caused USB to take off...8 or 9 years ago.
And let's lump Intel in there with protected memory.
Re:Apple no happy (Score:5, Insightful)
But Apple is get paid $$ for the hardware, so they can't be that annoyed.
Re:Apple no happy (Score:2)
Re:Apple no happy (Score:3, Insightful)
Re:hmm is it released now (Score:5, Informative)
The patch is available here: http://download.onmac.net/ [onmac.net]
Re:hmm is it released now (Score:2)
The Reliability Factor (Score:3, Informative)
Re:Did I miss something in TFA? (Score:3, Insightful)
The Macbook pro w/ 2.16ghz Duo ran a photoshop script in 1:10
The Acer Duo w/ 2.0ghz Duo ran a photoshop script in 1:11
The Mac Duo laptop with a 8% higher clocked CPU ran a benchmark 1.4% faster than the Acer Duo.
If anything, this looks bad for the Mac Duo.
Why is it seeing such a tiny improvement when it is 160mhz faster?
I run photoshop ONLY on my laptop (Score:4, Interesting)
Some people such as myself need Photoshop on the go. Others, also like myself, only have 1 license. Third, I have two systems: a Mac mini (G4) and a Thinkpad T40 (1.3 GHz Centrino, I believe). Should I therefore not use Photoshop, since both are (basically - the Mac mini is an iBook) laptops? Should people with iMac's not use Photoshop either, since those systems use Core Duo's?
Low end systems and laptops both passed the point years ago where they were fast enough for almost anything. Sure, Photoshop is faster on a high end G5 or P4 or whatever system, but it's very useable on any modern laptop or low end system.
Re:Dumb question? Dual mouse buttons anyone? (Score:3, Informative)
it's been like that on macs forever.
anyone with a laptop should probably get a small wireless mouse anyway, they are way better than using a track pad anyway.
Re:Dumb question? Dual mouse buttons anyone? (Score:3, Informative)
it's been like that on macs forever.
Yes, that's great. We all know that.
However, control+click doesn't do squat in Windows XP.