Intel® C++ Compiler 16.0 User and Reference Guide
Performs a vector masked move operation. No corresponding instruction. This intrinsic only applies to Intel® Many Integrated Core Architecture (Intel® MIC Architecture).
extern __m512 __cdecl _mm512_mask_mov_ps(__m512 dst, __mmask16 k1, __m512 src); extern __m512i __cdecl _mm512_mask_mov_epi32(__m512i dst, __mmask16 k1, __m512i src); |
dst |
Vector used for move operation |
src |
Vector used for move operation |
k1 |
Writemask; only those elements of the source vectors with corresponding bit set to '1' in the k1 mask are computed and stored in the result |
Performs a doubleword move operation of elements in the vectors src and dst. The resulting vector has elements from src and dst depending on bits set in the mask k1.
Returns the result of the move operation.