_mm_abs_ph
Classification
AVX-512, Arithmetic, CPUID Test: AVX512_FP16
Header File
immintrin.h
Synopsis
 _mm_abs_ph(__m128h v2);
Description
Finds the absolute value of each packed half-precision (16-bit) floating-point element in "v2", storing the results in "dst".
Operation
FOR j := 0 to 7
	dst.fp16[j] := ABS(v2.fp16[j])
ENDFOR
dst[MAX:128] := 0