Procedure call syntax:
| #include <simdmath.h> |
| vector unsigned long long isgreaterd2(vector double x, vector double y); |
| Link with -lsimdmath |
Inline call syntax:
| #include <simdmath.h> |
| #include <isgreaterd2.h> |
| vector unsigned long long _isgreaterd2(vector double x, vector double y); |
| Parameters | |
| x | input vector |
| y | input vector |
The isgreaterd2 function returns a vector in which each element indicates if the corresponding element of x is greater than the corresponding element of y. These functions correctly compare subnormal values.
Special cases:
if either element is NaN, the comparison is false.
| ULLONG_MAX | if the element of x is greater than the corresponding element of y. |
| 0 | otherwise. |
SPU only
SIMD Math library specification for the Cell Broadband Engine⢠Architecture.
Basis
ISO9899 (C99) isgreater macros.