Visible to Intel only — GUID: GUID-47601266-1C98-4455-8B42-780354CEAAFA
Visible to Intel only — GUID: GUID-47601266-1C98-4455-8B42-780354CEAAFA
<span class='option'>_mm256_abs_epi8/16/32 </span>
Computes the absolute value of the signed packed integer data elements of a given vector. The corresponding Intel® AVX2 instruction is VPABSB, VPABSW, or VPABSD.
extern __m256i _mm256_abs_epi8(__m256i s1); |
extern __m256i _mm256_abs_epi16(__m256i s1); |
extern __m256i _mm256_abs_epi32(__m256i s1); |
s1 |
integer source vector used for the operation |
Computes the absolute value of each data element, either signed bytes, 16-bit words, or 32-bit integers, of the source vector and stores the UNSIGNED results in the destination vector.
Result of the operation.