_mm256_abs_epi8
Classification
AVX_ALL, Special Math Functions, CPUID Test: AVX2
Header File
Instruction
VPABSB ymm, ymm
Synopsis
_mm256_abs_epi8(__m256i a);
Description
Compute the absolute value of packed signed 8-bit integers in "a", and store the unsigned results in "dst".
Operation
FOR j := 0 to 31
i := j*8
dst[i+7:i] := ABS(a[i+7:i])
ENDFOR
dst[MAX:256] := 0