VI_not | VBI_not | VSI_not | VLI_not | VQI_not | |
VU_not | VUB_not | VUS_not | VUL_not | VUQ_not | VUI_not |
|
Function | Bit-wise complement |
|
Syntax C/C++ | #include <VImath.h>
void VI_not( iVector Y, iVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<T>::not( const vector<T>& X ); |
Pascal/Delphi | uses VImath;
procedure VI_not( Y, X:iVector; size:UIntSize ); |
|
CUDA function C/C++ | #include <cudaVImath.h>
int cudaVI_not( iVector d_Y, iVector d_X, ui size );
int VIcu_not( iVector h_Y, iVector h_X, ui size );
|
CUDA function Pascal/Delphi | uses VImath;
function cudaVI_not( d_Y, d_X:iVector; size:UIntSize ): IntBool;
function VIcu_not( h_Y, h_X:iVector; size:UIntSize );
|
|
Description | Yi = ~(Xi)
Each single bit of the element Xi is inverted (i.e., it is 0 in Yi, if it was 1 in Xi, and vice versa). |
|
|
|
|