_mm256_or_si256
Classification
AVX_ALL, Logical, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VPOR ymm, ymm, ymm
Synopsis
 _mm256_or_si256(__m256i a, __m256i b);
Description
Compute the bitwise OR of 256 bits (representing integer data) in "a" and "b", and store the result in "dst".
Operation
dst[255:0] := (a[255:0] OR b[255:0])
dst[MAX:256] := 0