_mm256_set1_epi64x
Classification
AVX_ALL, Set, CPUID Test: AVX
Header File
immintrin.h
Synopsis
 _mm256_set1_epi64x(long long a);
Description
Broadcast 64-bit integer "a" to all elements of "dst". This intrinsic may generate the "vpbroadcastq".
Operation
FOR j := 0 to 3
	i := j*64
	dst[i+63:i] := a[63:0]
ENDFOR
dst[MAX:256] := 0