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 !