_mm512_cvtepi8_epi64
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
Instruction
VPMOVSXBQ zmm, xmm
Synopsis
_mm512_cvtepi8_epi64(__m128i a);
Description
Sign extend packed 8-bit integers in the low 8 bytes of "a" to packed 64-bit integers, and store the results in "dst".
Operation
FOR j := 0 to 7
i := 64*j
k := 8*j
dst[i+63:i] := SignExtend64(a[k+7:k])
ENDFOR
dst[MAX:512] := 0