_mm512_broadcastb_epi8
Classification
AVX-512, Miscellaneous, CPUID Test: AVX512BW
Header File
immintrin.h
Instruction
VPBROADCASTB zmm, xmm
Synopsis
 _mm512_broadcastb_epi8(__m128i a);
Description
Broadcast the low packed 8-bit integer from "a" to all elements of "dst".
Operation
FOR j := 0 to 63
	i := j*8
	dst[i+7:i] := a[7:0]
ENDFOR
dst[MAX:512] := 0