_mm256_broadcastw_epi16
Classification
AVX_ALL, Swizzle, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VPBROADCASTW ymm, xmm
Synopsis
 _mm256_broadcastw_epi16(__m128i a);
Description
Broadcast the low packed 16-bit integer from "a" to all elements of "dst".
Operation
FOR j := 0 to 15
	i := j*16
	dst[i+15:i] := a[15:0]
ENDFOR
dst[MAX:256] := 0