Procedure call syntax:
#include <simdmath.h> |
vector float powf4(vector float x, vector float y); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <powf4.h> |
vector float _powf4(vector float x, vector float y); |
Parameters | |
x | Vector containing base values. |
y | Vector containing exponents to be applied to the base values |
The powf4 function returns a vector of for corresponding elements of x and y.
The function powf4 returns a float vector in which each element is defined as the corresponding element of x raised to the power of the corresponding element of y.
SPU and PPU
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) power functions.