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.
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
Top Rated Comments
It’s quite embarrassing how far ahead they are.
Not today.
And I'm not being snarky. It's just that they have quite the vested interest in that big red part.
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.