Procedure call syntax:
#include <simdmath.h> |
vector double divd2(vector double x, vector double y); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <divd2.h> |
vector double _divd2(vector double x, vector double y); |
Parameters | |
x,y | input vectors |
The divd2 function divides each element of x by the corresponding element of y and return a vector of the quotients.
The function divd2 returns a vector containing the quotients produced by dividing each element of x by the corresponding element of y.
SPU only
SIMD Math library specification for the Cell Broadband Engine⢠Architecture.
Basis
ISO9899 (C99) div function