pub fn convert_to_u64_m128i_from_lower2_u16_m128i(a: m128i) -> m128i
Expand description
Convert the lower two u16
lanes to two u64
lanes.
let a = m128i::from([u16::MAX, 1, 2, 3, 4, 5, 6, 7]);
let c: [u64; 2] = convert_to_u64_m128i_from_lower2_u16_m128i(a).into();
assert_eq!(c, [u16::MAX as u64, 1]);
- Intrinsic:
_mm_cvtepu16_epi64
- Assembly:
pmovzxwq xmm, xmm