[][src]Function safe_arch::ceil_m128

#[must_use]pub fn ceil_m128(a: m128) -> m128
This is supported with target feature sse4.1 only.

Round each lane to a whole number, towards positive infinity

let a = m128::from_array([-0.1, 1.8, 2.5, 3.0]);
assert_eq!(ceil_m128(a).to_array(), [0.0, 2.0, 3.0, 3.0]);