I have a library which is optimized for ARM Cortex A8 equipped devices, it heavily utilized the NEON VFPU, can the same code run on Cortex A5 devices with NEON? If not, any guide to make it run on Cortex A5?
Thanks in advance!
Zhong
Both Cortex-A8 and Cortex-A5 are Armv7-A architectural processors. The NEON instructions are similar.
However, Cortex-A5 can support those options:
Cortex-A8 can support those options:
Compiler options
When you talked about "Cortex-A8 code heavily utilized the NEON VFPU" for Cortex-A5, you can judge based on above information.
Thanks, Zhifei !
Hi Noradavis,
So based on your assumption, the same NEON code can run on Cortex-A5 and generate right result, besides it has some performance penalty.
Is my understanding right?
Thank you,
Cortex-A8 and Cortex-A5 are based on the same architecture, A8 NEON code can run on Cortex-A5, but it might produce different performance gains.
Got it, thanks to Zenon !