1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! High-performance parallel string algorithms with CPU/GPU acceleration.
//!
//! Requires `cpus`, `cuda`, or `rocm` features. Provides:
//! - Levenshtein distances (binary and UTF-8)
//! - Needleman-Wunsch global alignment
//! - Smith-Waterman local alignment
//! - Min-Hash fingerprinting
pub use *;
pub use *;
pub use *;
pub use *;
extern crate alloc;
// The `forkunion` crate's build script compiles and links the thread-pool runtime resolving the `fu_*`
// symbols behind the StringZillas engines; referencing the crate keeps that native library in the final
// link even though all calls happen on the C++ side.
use forkunion as _;
/// Device helpers shared by the tests of more than one engine domain.
pub