_mm512_packstorelo_epi32
Classification
KNC, Store, CPUID Test: KNCNI
Header File
immintrin.h
Instruction
VPACKSTORELD m512, zmm
Synopsis
 _mm512_packstorelo_epi32(void* mt, __m512i v1);
Description
Stores packed 32-bit integer elements of "v1" into a doubleword stream at a logically mapped starting address "mt", storing the low-64-byte elements of that stream (those elements of the stream that map before the first 64-byte-aligned address follwing "mt").
Operation
storeOffset := 0
addr := mt
FOR j := 0 to 15
	i := j*32
	MEM[addr + storeOffset*4] := v1[i+31:i]
	storeOffset := storeOffset + 1
	IF ((addr + storeOffset*4) % 64) == 0
		BREAK
	FI
ENDFOR