neo_frizbee 0.7.2

Fast fuzzy matching via SIMD smith waterman, similar algorithm to FZF/FZY
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! SIMD implementation of the smith waterman algorithm with inter-sequence many-to-one
//! parallelism. AVX512 and AVX2 will be detected at runtime, falling back to 128-bit SIMD. You
//! should use a maximum of 32 lanes, as this relates to 512-bit wide SIMD registers.

mod algorithm;
mod indices;
mod interleave;
mod types;
mod typos;

pub use algorithm::*;
pub use indices::*;
pub use interleave::*;
pub(crate) use types::*;
pub use typos::*;