halftime 0.1.0

HalftimeHash: almost-universal hashing for long strings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Monolithic SIMD pipelines (V4, `b = 8`) with runtime `target_feature` dispatch.

mod pipeline;

#[cfg(all(
    any(target_arch = "x86", target_arch = "x86_64"),
    not(halftime_backend = "soft")
))]
pub(crate) use pipeline::{avx2, avx512, sse2};

#[cfg(all(target_arch = "aarch64", not(halftime_backend = "soft")))]
pub(crate) use pipeline::neon;