_mm512_broadcastw_epi16
Classification
AVX-512, Miscellaneous, CPUID Test: AVX512BW
Header File
immintrin.h
Instruction
VPBROADCASTW zmm, xmm
Synopsis
 _mm512_broadcastw_epi16(__m128i a);
Description
Broadcast the low packed 16-bit integer from "a" to 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