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