_mm512_and_epi64
Classification
AVX-512, Logical, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
VPANDQ zmm, zmm, zmm
Synopsis
 _mm512_and_epi64(__m512i a, __m512i b);
Description
Compute the bitwise AND of 512 bits (composed of packed 64-bit integers) in "a" and "b", and store the results in "dst".
Operation
dst[511:0] := (a[511:0] AND b[511:0])
dst[MAX:512] := 0