_mm256_broadcastq_epi64
Classification
Header File
Instruction
VPBROADCASTQ ymm, xmm
Synopsis
_mm256_broadcastq_epi64(__m128i a);
Description
Broadcast the low packed 64-bit integer from "a" to all elements of "dst".
Operation
FOR j := 0 to 3
i := j*64
dst[i+63:i] := a[63:0]
ENDFOR
dst[MAX:256] := 0