[][src]Function safe_arch::convert_to_m256d_from_i32_m128i

#[must_use]pub fn convert_to_m256d_from_i32_m128i(a: m128i) -> m256d
This is supported with target feature avx only.

Convert i32 lanes to be f64 lanes.

let a = m128i::from([4, 5, 6, 7]);
let b = convert_to_m256d_from_i32_m128i(a).to_array();
assert_eq!(b, [4.0, 5.0, 6.0, 7.0]);