Skip Navigation

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

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

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......

Comments

2