EVE is a new library that exposes SIMD in a uniform way across both ARM (neon) and x86 (from sse2 to avx-512).
Demo: vectorized find for x86 and arm on godbolt: https://godbolt.org/z/n6Pds78s6
It's main advantages over similar libraries include:
* STL like algorithm support, including zip to operate on multiple ranges .
* ARM support (many libraries only support x86)
* A very comprehensive math library.
It is liberally licensed and intended to be production quality.
This talk will include a collection of demos for different library features and benchmarks, as well as practical advice on using EVE in your projects.