_mm512_abs_ph
Classification
AVX-512, Arithmetic, CPUID Test: AVX512_FP16
Header File
Synopsis
_mm512_abs_ph(__m512h 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 31
dst.fp16[j] := ABS(v2.fp16[j])
ENDFOR
dst[MAX:512] := 0