_mm512_set1_epi16
Classification
Header File
Instruction
VPBROADCASTW zmm, r16
Synopsis
_mm512_set1_epi16(short a);
Description
Broadcast the low packed 16-bit integer from "a" to all all elements of "dst".
Operation
FOR j := 0 to 31
i := j*16
dst[i+15:i] := a[15:0]
ENDFOR
dst[MAX:512] := 0