[][src]Function safe_arch::load_f32_splat_m256

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

Load an f32 and splat it to all lanes of an m256d

let a = 1.0;
let b = load_f32_splat_m256(&a).to_array();
assert_eq!(b, [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]);