This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

question about datasheet

there's description below in sprs614d.pdf

Q1. To use float point calculation by either NEON or VPF-v3, we can refer to  following in http://processors.wiki.ti.com/index.php/Cortex_A8#What_is_Neon.3F 

  • arm-none-linux-gnueabi-gcc -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -mfloat-abi=softfp
  • arm-none-linux-gnueabi-gcc -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=vfp -ftree-vectorize -mfloat-abi=softfp

      But after I look http://doc.ironwoodlabs.com/arm-arm-none-eabi/html/getting-started/sec-armfloat.html , I found it's weird.

      The NEON and VPF-v3 is hardware accelerator, why the compiling argument isn't following but the above

  • arm-none-linux-gnueabi-gcc -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -mfloat-abi=hard
  • arm-none-linux-gnueabi-gcc -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=vfp -ftree-vectorize -mfloat-abi=hard

  • one more question

    Q2. when we use the linux command "top", does the field "CPU loading" include the loading of NEON and VPF-v3?

           if yes, how did I know the loading ofr each of them?

           if not, how do I know that?