AnandTech Finds iPhone 11 Pro Has 50-60% Higher Sustained Graphics Performance Than iPhone XS

AnandTech today published its in-depth review of the iPhone 11 and iPhone 11 Pro, including a detailed overview of the processor and graphics performance gains of Apple's latest A13 Bionic chip.

a13 bionic mockup
Starting with CPU performance, AnandTech found the A13 chip is around 20 percent faster than the A12 chip in last year's iPhone models, consistent with Apple's advertised claims. However, to fully achieve that improvement, the site claims Apple had to increase the peak power consumption of the CPU cores:

In virtually all of the SPECint2006 tests, Apple has gone and increased the peak power draw of the A13 SoC; and so in many cases we're almost 1W above the A12. Here at peak performance it seems the power increase was greater than the performance increase, and that's why in almost all workloads the A13 ends up as less efficient than the A12.

In terms of efficiency at the A13 chip's peak performance state, AnandTech believes the higher power draw will likely result in both the chip and the ‌iPhone‌ being more sensitive to temperatures and prone to throttling.

Apple says the A13 chip is up to 30 percent more power efficient than the A12 chip overall, encompassing all levels of performance.

In terms of overall performance, AnandTech emphasized Apple's lead in the mobile chip space, noting that the A13 posts almost double the performance of the next best non-Apple chip. The site also found the A13 "essentially matched" the "best that AMD and Intel have to offer" for desktop CPUs, at least based on SPECint2006, a suite of CPU-intensive cross-platform integer benchmarks.

AnandTech was even more impressed with GPU performance, noting that while peak performance has improved by roughly 20 percent as advertised, the ‌iPhone‌ 11 Pro had 50 to 60 percent higher sustained performance scores than the ‌iPhone‌ XS based on the high-end GFXBench graphics benchmark:

Where the new chip really shines and exceeds Apple's own marketing claims is in the sustained performance and efficiency of the new GPU. Particularly the iPhone 11 Pro models were able to showcase much improved long-term performance results, all while keeping thermals in check. The short version of it is that Apple has been able to knock it out of the park, delivering performance increases that we hadn't expected in what's essentially a mid-generation refresh on the chip manufacturing side of matters.

AnandTech is widely known for its coverage of components like CPUs and GPUs, so its ‌iPhone‌ reviews are highly regarded. AnandTech founder Anand Shimpi joined Apple's chipmaking team in 2014 and recently spoke about the A13 chip in an interview alongside Apple's marketing chief Phil Schiller.

Full Review: The Apple iPhone 11, 11 Pro & 11 Pro Max Review: Performance, Battery, & Camera Elevated by Andrei Frumusanu

Popular Stories

General Apps Messages Redux

iOS 26: New Messages and Phone App Features Leaked Ahead of WWDC

Friday June 6, 2025 7:27 am PDT by
Apple is planning to announce several new features for the Messages and Phone apps on iOS 26, according to Bloomberg's Mark Gurman. In a lengthy report outlining his WWDC 2025 expectations today, Gurman said that the two main changes in the Messages app will be the ability to create polls, as well as the option to set a background image within a conversation. 9to5Mac was first to report...
iPhone 17 Air Size Feature

'iPhone 17 Air' Launching Later This Year With These 17 New Features

Friday June 6, 2025 6:17 am PDT by
While the so-called "iPhone 17 Air" is not expected to launch until September, there are already plenty of rumors about the ultra-thin device. Overall, the iPhone 17 Air sounds like a mixed bag. While the device is expected to have an impressively thin and light design, rumors indicate it will have some compromises compared to iPhone 17 Pro models, including worse battery life, only a single ...
macOS Tahoe Render

macOS Tahoe Might Support One Fewer Mac Than Previously Rumored

Saturday June 7, 2025 5:27 am PDT by
macOS 26 will drop support for several older Intel-based Mac models currently compatible with macOS Sequoia, according to a private account on X with a proven track record of leaking information about Apple's software platforms. macOS 26 will be compatible with the following Mac models, the account said:MacBook Air (M1 and later) MacBook Pro (2019 and later) iMac (2020 and later) Mac...
iOS 26 white

iOS 26's Digital Glass Design: Home Screen Widgets, Camera, and More

Friday June 6, 2025 8:32 am PDT by
In a lengthy report outlining his WWDC 2025 expectations today, Bloomberg's Mark Gurman shared more details about iOS 26's rumored new design. According to Gurman, iOS 26 will feature a "digital glass" design inspired by visionOS, the operating system for Apple's Vision Pro headset. That is a well-known rumor by now, but he goes on to provide some more specific details, as listed below:There ...
iOS 26 Messages Background Mock Feature

iOS 26 Getting Custom AI-Generated Message Backgrounds, Generative Shortcuts and 'Mixmoji'

Friday June 6, 2025 12:57 pm PDT by
The iOS 26 Messages app is set to gain support for customized backgrounds for conversations, and it appears that AI will be an option for generating different looks. According to Nicolás Alvarez, iOS 26 code suggests that users will be able to generate backgrounds for the Messages app using text-based descriptions. The feature appears to use Image Playground, and there will be Image...
watchOS 26 Mock Feature

watchOS 26 to Support These Apple Watch Models

Friday June 6, 2025 3:22 am PDT by
Apple's upcoming watchOS 26 software update will support all Apple Watch models that are compatible with watchOS 11, according to a private account on X with a proven track record for upcoming software updates. If this rumor is accurate, and we believe it is, watchOS 26 will be compatible with the Apple Watch Series 6 and beyond: Apple Watch SE (2nd generation) Apple Watch Series 6 ...

Top Rated Comments

AvisDeene Avatar
74 months ago
If only Apple would put as much effort into increasing their desktop graphic performance.
Score: 27 Votes (Like | Disagree)
realtuner Avatar
74 months ago
Apple once again laying the smackdown on everyone.

It’s quite embarrassing how far ahead they are.
Score: 21 Votes (Like | Disagree)
timber Avatar
74 months ago
What does Apple say to the god of diminishing returns?

Not today.
Score: 20 Votes (Like | Disagree)
ToneDriver Avatar
74 months ago

If only Apple would put as much effort into increasing their desktop graphic performance.
Could be why
And I'm not being snarky. It's just that they have quite the vested interest in that big red part.

Attachment Image
Score: 14 Votes (Like | Disagree)
miami.best21 Avatar
74 months ago
That means better emojis.
Score: 14 Votes (Like | Disagree)
chucker23n1 Avatar
74 months ago

It’s mind boggling that Apple has so little RAM in its flagships, but it’s processors are so far ahead and efficient that iPhones can still outperform the competition.
It's fairly easy to explain at a technical level.

iOS apps are mostly AOT-compiled code with no garbage collection (typically written in ObjC, Swift or C++ and targeting the native CPU); Android apps are mostly JIT-compiled code with a garbage collector (typically written in Java or Kotlin and targeting the Java VM). The two have different performance characteristics; generally speaking, native code is faster especially at first execution, whereas JIT code can in some cases be faster when well-optimized against the current situation, but is typically slower.

One isn't necessarily better than the other, but it makes sense that the latter would require more RAM: whereas the former is already compiled, runs natively against the physical CPU, and has had memory allocations and deallocations defined during compile time, the latter needs each process to run a VM, a JIT compiler, and a garbage collector.
Score: 13 Votes (Like | Disagree)