_mm512_reduce_gmin_ps
Classification
KNC, Special Math Functions, CPUID Test: KNCNI
Header File
Synopsis
_mm512_reduce_gmin_ps(__m512 a);
Description
Determines the minimum element of the packed single-precision (32-bit) floating-point elements stored in "a" and stores the result in "dst".
Operation
min := a[31:0]
FOR j := 1 to 15
i := j*32
dst := FpMin(min, a[i+31:i])
ENDFOR
dst := min