Function core::arch::x86_64::_mm_storeu_ps

1.27.0 · source ·
pub unsafe fn _mm_storeu_ps(p: *mut f32, a: __m128)
Available on (x86 or x86-64) and target feature sse and x86-64 only.
Expand description

将四个 32 位浮点数存储到内存中。内存对齐没有任何限制。 对于对齐的内存,_mm_store_ps 可能更快。

这对应于指令 VMOVUPS/MOVUPS

Intel’s documentation