Procedure call syntax:
#include <simdmath.h> |
vector unsigned long long isfinited2(vector double x); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <isfinited2.h> |
vector unsigned long long _isfinited2(vector double x); |
Parameters | |
x | input vector |
The isfinited2 function returns a vector in which each element indicates if the corresponding element of x is finite. Finite elements include 0, subnormals and normals. Infinite elements are Inf and NaN.
ULLONG_MAX | if the element of x is finite. |
0 | if the element of x is Inf or NaN. |
SPU only
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) isfinite macros.