Procedure call syntax:
#include <simdmath.h> |
vector unsigned long long isgreaterequald2(vector double x, vector double y); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <isgreaterequald2.h> |
vector unsigned long long _isgreaterequald2(vector double x, vector double y); |
Parameters | |
x | input vector |
y | input vector |
The isgreaterequald2 function returns a vector in which each element indicates if the corresponding element of x is greater than or equal to the corresponding element of y. This function correctly compares subnormal values.
Special cases:
If either element is NaN the comparison is false.
If both elements are infinite with the same sign the elements are considered equal.
The values +0 and -0 are considered equal.
ULLONG_MAX | if the element of x is greater than or equal to the corresponding element of y. |
0 | otherwise. |
SPU only
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) isgreaterequal macros.