_mm512_storenr_pd
Classification
KNC, Store, CPUID Test: KNCNI
Header File
Instruction
VMOVNRAPD m512, zmm
Synopsis
_mm512_storenr_pd(void * mt, __m512d v);
Description
Stores packed double-precision (64-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 7
i := j*64
addr[i+63:i] := v[i+63:i]
ENDFOR