[][src]Function safe_arch::convert_to_m256_from_i32_m256i

#[must_use]pub fn convert_to_m256_from_i32_m256i(a: m256i) -> m256
This is supported with target feature avx only.

Convert i32 lanes to be f32 lanes.

let a = m256i::from([4, 5, 6, 7, 8, -9, 1, 0]);
let b = convert_to_m256_from_i32_m256i(a).to_array();
assert_eq!(b, [4.0, 5.0, 6.0, 7.0, 8.0, -9.0, 1.0, 0.0]);