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
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 !