[][src]Function safe_arch::store_m256

pub fn store_m256(addr: &mut m256, a: m256)
This is supported with target feature avx only.

Store data from a register into memory.

let mut addr = m256::from([0.0; 8]);
store_m256(&mut addr, m256::from([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]));
assert_eq!(addr.to_array(), [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]);