_mm256_div_pd
Classification
AVX_ALL, Arithmetic, CPUID Test: AVX
Header File
immintrin.h
Instruction
VDIVPD ymm, ymm, ymm
Synopsis
 _mm256_div_pd(__m256d a, __m256d b);
Description
Divide packed double-precision (64-bit) floating-point elements in "a" by packed elements in "b", and store the results in "dst".
Operation
FOR j := 0 to 3
	i := 64*j
	dst[i+63:i] := a[i+63:i] / b[i+63:i]
ENDFOR
dst[MAX:256] := 0