Visible to Intel only — GUID: GUID-30224444-50CD-4832-B553-796911CD33F8
Visible to Intel only — GUID: GUID-30224444-50CD-4832-B553-796911CD33F8
<span class='option'>_mm256_hadd_epi16/32 </span>
Horizontally adds adjacent signed packed 16/32-bit integer data elements of two vectors. The corresponding Intel® AVX2 instruction is VPHADDW or VPHADDD.
extern __m256i _mm256_hadd_epi16(__m256i s1, __m256i s2); |
extern __m256i _mm256_hadd_epi32(__m256i s1, __m256i s2); |
s1 |
integer source vector used for the operation |
s2 |
integer source vector used for the operation |
Adds two adjacent 16- or 32-bit signed integers horizontally from source vectors, s1 and s2 and packs the 16 or 32-bit signed results to the destination vector.
Horizontal addition of two adjacent data elements of the low 16- or 32-bytes of the first and second source vectors are packed into the low 16- or 32-bytes of the destination vector. Horizontal addition of two adjacent data elements of the high 16- or 32-bytes of the first and second source vectors are packed into the high 16- or 32-bytes of the destination vector.
Result of the horizontal addition operation.