1 2 3 4 5 6 7 8 9 10 11 12
//! SIMD-accelerated binary operations. //! //! See [`dispatch`] for the public dispatch functions. #[cfg(target_arch = "aarch64")] pub(crate) mod aarch64; #[cfg(target_arch = "x86_64")] pub(crate) mod x86_64; pub(crate) mod dispatch; pub use dispatch::*;