_mm256_svml_floor_ph
Classification
SVML, Special Math Functions, CPUID Test: AVX512_FP16
Header File
Synopsis
_mm256_svml_floor_ph(__m256h a);
Description
Round the packed half-precision (16-bit) floating-point elements in "a" down to an integer value, and store the results as packed single-precision floating-point elements in "dst".
Operation
FOR j := 0 to 15
i := j*16
dst[i+15:i] := FLOOR(a[i+15:i])
ENDFOR
dst[MAX:256] := 0