Function surge_halfrate::imports::_mm_setr_ps
1.27.0 · source · [−]This is supported with target feature
sse
only.Expand description
Construct a __m128
from four floating point values lowest to highest.
This matches the memory order of __m128
, i.e., a
will be the lowest 32
bits of the result, and d
the highest.
assert_eq!(__m128::new(a, b, c, d), _mm_setr_ps(a, b, c, d));