Procedure call syntax:
#include <simdmath.h> |
vector unsigned long long isnormald2(vector double x); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <isnormald2.h> |
vector unsigned long long _isnormald2(vector double x); |
Parameter | |
x | input vector |
The isnormald2 function returns a vector in which each element indicates if the corresponding element of x is normal (not subnormal, Inf or NaN).
ULLONG_MAX | if the element of x is normal. |
0 | otherwise. |
SPU only
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) isnormal macro.