_mm512_set1_epi8
Classification
Header File
Instruction
VPBROADCASTB zmm, r8
Synopsis
_mm512_set1_epi8(char a);
Description
Broadcast 8-bit integer "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