ermig1979 / Simd

C++ image processing and machine learning library with using of SIMD: SSE, AVX, AVX-512, AMX for x86/x64, VMX(Altivec) and VSX(Power7) for PowerPC, NEON for ARM.
http://ermig1979.github.io/Simd
MIT License
2.05k stars 409 forks source link

NEON support #242

Closed robinvanemden closed 1 year ago

robinvanemden commented 1 year ago

One of the great features of the SIMD library is its support of both Arm NEON and Intel vector extensions. However, more recent code seems focussed on Intel SIMD only. Is this by design? Or will NEON versions of newer functions possibly be added later? That would be awesome.

ermig1979 commented 1 year ago

Hi! Simd will continue to support ARM NEON. The absent of NEON optimizations of some functions is temporal.

robinvanemden commented 1 year ago

@ermig1979 that is terrific, thank you!