_mm512_storenrngo_ps
Classification
KNC, Store, CPUID Test: KNCNI
Header File
Instruction
VMOVNRNGOAPS m512, zmm
Synopsis
_mm512_storenrngo_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 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 15
i := j*32
addr[i+31:i] := v[i+31:i]
ENDFOR