[−][src]Function safe_arch::store_unaligned_m256
pub fn store_unaligned_m256(addr: &mut [f32; 8], a: m256)
This is supported with target feature
avx
only.Store data from a register into memory.
let mut addr = [0.0; 8]; store_unaligned_m256( &mut addr, m256::from([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]), ); assert_eq!(addr, [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]);