aho-corasick (and thus the regex crate too) now uses SIMD on aarch64 (e.g., Apple silicon) to greatly accelerate some searches

Open link in next tab

add aarch64 SIMD implementation of Teddy by BurntSushi · Pull Request #129 · BurntSushi/aho-corasick

https://github.com/BurntSushi/aho-corasick/pull/129

Up until this point, Teddy was explicitly written using x86-64 SIMD routines. Specifically, ones from SSSE3 and AVX2. This PR shuffles Teddy's main implementation into code that is generic over a n...

add aarch64 SIMD implementation of Teddy by BurntSushi · Pull Request #129 · BurntSushi/aho-corasick