Function _mm_storeu_ps

#[target_feature(enable = "sse")]
pub const unsafe fn _mm_storeu_ps(p: *mut f32, a: __m128)

Stores four 32-bit floats into memory. There are no restrictions on memory alignment. For aligned memory _mm_store_ps may be faster.

This corresponds to instructions VMOVUPS / MOVUPS.

Intel's documentation