Procedure call syntax:
| #include <simdmath.h> |
| vector unsigned int isgreaterf4(vector float x, vector float y); |
| Link with -lsimdmath |
Inline call syntax:
| #include <simdmath.h> |
| #include <isgreaterf4.h> |
| vector unsigned int _isgreaterf4(vector float x, vector float y); |
| Parameters | |
| x | input vector |
| y | input vector |
The isgreaterf4 function returns a vector in which each element indicates if the corresponding element of x is greater than the corresponding element of y. This function correctly compares subnormal values.
Special cases:
if either element is NaN, the comparison is false.
| UINT_MAX | if the element of x is greater than the corresponding element of y. |
| 0 | otherwise. |
SPU and PPU
SIMD Math library specification for the Cell Broadband Engine⢠Architecture.
Basis
ISO9899 (C99) isgreater macros.