_mm256_broadcastsd_pd
Classification
AVX_ALL, Swizzle, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VBROADCASTSD ymm, xmm
Synopsis
 _mm256_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 3
	i := j*64
	dst[i+63:i] := a[63:0]
ENDFOR
dst[MAX:256] := 0