Function sqrt_m128
pub fn sqrt_m128(a: m128) -> m128
Available on crate feature
dep_safe_arch
only.Expand description
Lanewise sqrt(a)
.
let a = m128::from_array([25.0, 16.0, 9.0, 4.0]);
let b = sqrt_m128(a).to_array();
assert_eq!(b, [5.0, 4.0, 3.0, 2.0]);