blob: 0192a3d442aece5c89ec0e6fce8de7786ebcbda7 [file]
//! Architecture-specific support for aarch64 with neon.
mod fma;
mod rounding;
mod sqrt;
pub use fma::{fma, fmaf};
#[cfg(all(f16_enabled, target_feature = "fp16"))]
pub use rounding::rintf16;
pub use rounding::{rint, rintf};
#[cfg(all(f16_enabled, target_feature = "fp16"))]
pub use sqrt::sqrtf16;
pub use sqrt::{sqrt, sqrtf};