ARM-software / ComputeLibrary

The Compute Library is a set of computer vision and machine learning functions optimised for both Arm CPUs and GPUs using SIMD technologies.
MIT License
2.76k stars 767 forks source link

Support ARM NEOVERSE N1 ? #974

Closed lianghong closed 2 years ago

lianghong commented 2 years ago

Hi,

Although it is mentioned in the project description that the supported processor are only Arm Cortex-A, , Arm Cortex-R and Arm Cortex-X1. I would still want to get a confirmation, does ACL support Arm Neoverse N1? Thanks.

morgolock commented 2 years ago

Hi @lianghong

Neoverse-N1 is an armv8.2-a arch, ACL has many kernels optimized for this architecture. These kernels use FP16 and dot product instructions to speedup some computation.

You can build ACL for armv8.2 with the option arch=arm64-v8.2-a Hope this helps.

lianghong commented 2 years ago

Thanks !