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