_mm256_set1_epi16
Classification
Header File
Synopsis
_mm256_set1_epi16(short a);
Description
Broadcast 16-bit integer "a" to all all elements of "dst". This intrinsic may generate the "vpbroadcastw".
Operation
FOR j := 0 to 15
i := j*16
dst[i+15:i] := a[15:0]
ENDFOR
dst[MAX:256] := 0