You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 22, 2021. It is now read-only.
The proposal in #1 doesn't include vectorized versions of the floating-point round-to-integer instructions:
f32x4.ceil(x: v128) -> v128f32x4.floor(x: v128) -> v128f32x4.trunc(x: v128) -> v128f32x4.nearest(x: v128) -> v128f64x2.ceil(x: v128) -> v128f64x2.floor(x: v128) -> v128f64x2.trunc(x: v128) -> v128f64x2.nearest(x: v128) -> v128It seems these instructions would be just as useful in vectorized floating-point code as they are in scalar code.
Are these instructions widely available in SIMD instruction sets we care about?