Procedure call syntax:
#include <simdmath.h> |
llroundf4_t llroundf4(vector float x); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <llroundf4.h> |
llroundf4_t _llroundf4(vector float x); |
Parameters | |
x | input vector |
The llroundf4 function returns a structure of vectors of signed long long integers which are nearest to the corresponding elements of x.
The function llroundf4 returns a llroundf4_t structure containing vectors in which each element is defined as the nearest long long integer to the corresponding element of x.
typedef struct llroundf4_t { | ||
vector signed long long vll[2]; | ||
} llroundf4_t; |
SPU and PPU
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) llround functions.