_mm_broadcastsd_pd
Classification
AVX_ALL, Swizzle, CPUID Test: AVX2
Header File
immintrin.h
Instruction
MOVDDUP xmm, xmm
Synopsis
 _mm_broadcastsd_pd(__m128d a);
Description
Broadcast the low double-precision (64-bit) floating-point element from "a" to all elements of "dst".
Operation
FOR j := 0 to 1
	i := j*64
	dst[i+63:i] := a[63:0]
ENDFOR
dst[MAX:128] := 0