#[cfg(any(all(target_feature = "avx", target_feature = "avx2"), dox))]
#[doc(cfg(all(target_feature = "avx", target_feature = "avx2")))]
pub mod avx;
#[cfg(any(
all(
target_feature = "sse",
target_feature = "sse2",
target_feature = "sse3",
target_feature = "sse4.1",
target_feature = "sse4.2"
),
dox
))]
#[doc(cfg(all(
target_feature = "sse",
target_feature = "sse2",
target_feature = "sse3",
target_feature = "sse4.1",
target_feature = "sse4.2",
)))]
pub mod sse;