Procedure call syntax:
#include <simdmath.h> |
vector unsigned int isunorderedf4(vector float x, vector float y); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <isunorderedf4.h> |
vector unsigned int _isunorderedf4(vector float x, vector float y); |
Parameters | |
x | input vector |
y | input vector |
The isunorderedf4 function returns a vector in which each element indicates if the corresponding element of either x or y is unordered (NaN).
On the SPU single-precision NaN values are not representable. Therefore the function isunorderedf4 returns 0 for all input.
UINT_MAX | if the element of either x or y is NaN. |
0 | otherwise. |
SPU and PPU
SIMD Math library specification for the Cell Broadband Engine⢠Architecture.
Basis
ISO9899 (C99) isunordered macros.