| VF_mantexp | VD_mantexp | VE_mantexp |
|
| Function | Split up the elements of a vector into their mantissa and exponent parts |
|
| Syntax C/C++ | #include <VFmath.h>
int VF_mantexp( fVector MantPart, iVector ExpPart, fVector X, ui size ); |
| C++ VecObj | #include <OptiVec.h>
int vector<T>::mantexp( vector<int> ExpPart, const vector<T>& X ); |
| Pascal/Delphi | uses VFmath;
function VF_mantexp( MantPart:fVector; ExpPart:iVector; X:fVector; size:UIntSize ): IntBool; |
|
| CUDA function C/C++ | #include <cudaVFmath.h>
int cudaVF_mantexp( fVector d_MantPart, iVector d_ExpPart, fVector d_X, ui size );
int VFcu_mantexp( fVector h_MantPart, iVector h_ExpPart, fVector h_X, ui size );
|
| CUDA function Pascal/Delphi | uses VFmath;
function cudaVF_mantexp( d_MantPart:fVector; d_ExpPart:iVector; d_X:fVector; size:UIntSize ): IntBool;
function VFcu_mantexp( h_MantPart:fVector; h_ExpPart:iVector; h_X:fVector; size:UIntSize ): IntBool;
|
|
| Description | The elements of X are split up into their mantissa, stored in MantPart, and exponent, stored as ints in ExpPart. |
|
|
| Return value | always FALSE (0) |
|
|