_mm512_nearbyint_ph
Classification
SVML, Special Math Functions, CPUID Test: AVX512_FP16
Header File
immintrin.h
Synopsis
 _mm512_nearbyint_ph(__m512h a);
Description
Rounds each packed half-precision (16-bit) floating-point element in "a" to the nearest integer value and stores the results as packed double-precision floating-point elements in "dst".
Operation
FOR j := 0 to 31
	i := j*16
	dst[i+15:i] := NearbyInt(a[i+15:i])
ENDFOR
dst[MAX:512] := 0