I was wondering how does a modern ARM chip based on ARM Cortex A8 compare, in clock-for-clock performance and capability, to a modern x86 chip such as a Core 2 Duo or Core i5?

I realise due to the different instruction sets it'll depend heavily on what you're doing.

To put it another way, rendering a web page in webkit on a 1GHz ARM Cortex A8 based chip should be about equivalent to doing in on a Core i5 at __ MHz?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

There are some benchmarks that compute scores that can be used for such comparisons. Try searching for DMIPS/MHz and maybe also CoreMark/MHz.

I'd expect them to be more comparable in performance to Atom CPUs though.

link|improve this answer
feedback

What you're looking for is quite hard to find, mostly because you're comparing apples to oranges. You can't really compare load times for a webpage, or any other thing for that matter, mostly because these operations are not only CPU dependent, they're also dependent on the OS they're running and on the hardware that it uses (RAM being a major candidate).

Also, ARM chips are highly optimized for just a few specific tasks, while on a Core i7, for instance, you also have CPU operations used for complex stuff (AES encryption, video encoding, parallel processing) that an ARM CPU simply doesn't need to do.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.