#[cfg(feature = "generic-simd")]
pub mod generic;
#[cfg(all(
feature = "runtime-dispatch-simd",
any(target_arch = "x86", target_arch = "x86_64"),
not(feature = "generic-simd")
))]
pub mod x86_sse2;
#[cfg(all(feature = "runtime-dispatch-simd", target_arch = "x86_64"))]
pub mod x86_avx2;