_mm512_i64scatter_epi32lo
Classification
KNC, Store, CPUID Test: KNCNI
Header File
immintrin.h
Synopsis
 _mm512_i64scatter_epi32lo(void * base_addr, __m512i vindex, __m512i a, int scale);
Description
Stores 8 packed 32-bit integer elements in "a" in memory locations starting at location "base_addr" at packed 64-bit integer indices stored in "vindex" scaled by "scale".
Operation
FOR j := 0 to 7
	i := j*32
	m := j*64
	addr := base_addr + vindex[m+63:m] * ZeroExtend64(scale) * 8
	MEM[addr+31:addr] := a[i+31:i]
ENDFOR