#[cfg(all(target_feature = "avx512vl", target_feature = "avx512vbmi"))]
pub const LANES: usize = 64;
#[cfg(all(target_feature = "avx2", not(all(target_feature = "avx512vl", target_feature = "avx512vbmi"))))]
pub const LANES: usize = 32;
#[cfg(not(any(target_feature = "avx2", all(target_feature = "avx512vl", target_feature = "avx512vbmi"))))]
pub const LANES: usize = 16;