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