_mm512_xor_si512
Classification
AVX-512, Logical, CPUID Test: AVX512F
Header File
Instruction
VPXORD zmm, zmm, zmm
Synopsis
_mm512_xor_si512(__m512i a, __m512i b);
Description
Compute the bitwise XOR of 512 bits (representing integer data) in "a" and "b", and store the result in "dst".
Operation
dst[511:0] := (a[511:0] XOR b[511:0])
dst[MAX:512] := 0