_mm512_storenr_ps
Classification
KNC, Store, CPUID Test: KNCNI
Header File
immintrin.h
Instruction
VMOVNRAPS m512, zmm
Synopsis
 _mm512_storenr_ps(void * mt, __m512 v);
Description
Stores packed single-precision (32-bit) floating-point elements from "v" to memory address "mt" with a no-read hint to the processor.
Operation
addr := MEM[mt]
FOR j := 0 to 15
	i := j*32
	addr[i+31:i] := v[i+31:i]
ENDFOR