_mm256_set1_epi16
Classification
AVX_ALL, Set, CPUID Test: AVX
Header File
immintrin.h
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