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