_mm512_storenrngo_pd
Classification
KNC, Store, CPUID Test: KNCNI
Header File
Instruction
VMOVNRNGOAPD m512, zmm
Synopsis
_mm512_storenrngo_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 and using a weakly-ordered memory consistency model (stores performed with this function are not globally ordered, and subsequent stores from the same thread can be observed before them).
Operation
addr := MEM[mt]
FOR j := 0 to 7
i := j*64
addr[i+63:i] := v[i+63:i]
ENDFOR