levenshtein-sse icon indicating copy to clipboard operation
levenshtein-sse copied to clipboard

SIMD-enabled Levenshtein distance in C++

Results 5 levenshtein-sse issues
Sort by recently updated
recently updated
newest added

Add missing `rebind` implementation for the instantiation of `AlignmentAllocator` with `N=1`. This was causing a compiler error in gcc 13.2. Closes #6.

Encountered this when attempting to build with GCC 13.2.0. The generic `AlignmentAllocator` is fine, but the specific instantiation for N = 1 is missing the `rebind`. Easy fix.

Hi there, Using g++ (version 7) in Ubuntu 18.04, I tried to compile a single simple Levenshtein distance calculation with: ``` #include #include #include "levenshtein-sse.hpp" #include int main() { std::cout

Not sure if the project is still maintained, but I thought this might be interesting. I happened to run it under sanitizers and UBSan reports undefined behavior when running the...

Hi! Thanks for the awesome work here. I've been tinkering with it for the past couple of evenings. I've been testing for potential performance improvements by switching from `std::vector` &...