Procedure call syntax:
#include <simdmath.h> |
vector double fmind2(vector double x, vector double y); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <fmind2.h> |
vector double _fmind2(vector double x, vector double y); |
Parameters | |
x.y | input vectors |
The fmind2 function returns a vector containing the smaller (less positive) elements of x and y.
In double precision subnormals1 equate to zero and so compare as equal. This means that the value returned may be either one of the subnormals, thereby making the following possibly true for two subnormal inputs:
fmind2(a, b) != fmind2(b, a)
SPU only
SIMD Math library specification for the Cell Broadband Engine⢠Architecture.
Basis
ISO9899 (C99) fmin functions.