Function safe_arch::unpack_high_i64_m256i
source ยท pub fn unpack_high_i64_m256i(a: m256i, b: m256i) -> m256i
Available with target feature
avx2
only.Expand description
Unpack and interleave high i64
lanes of a
and b
.
- Operates on the high half of each 128 bit portion.
let a = m256i::from([1_i64, 2, 3, 4]);
let b = m256i::from([5_i64, 6, 7, -8]);
let c: [i64; 4] = unpack_high_i64_m256i(a, b).into();
assert_eq!(c, [2, 6, 4, -8]);
- Intrinsic:
_mm256_unpackhi_epi64
- Assembly:
vpunpckhqdq ymm, ymm, ymm