1 2 3 4 5 6 7
use crate::{AssemblerData, SimdSize, arch::float_slice::SIMD_WIDTH}; pub struct FloatSliceAssembler(pub(crate) AssemblerData<[f32; SIMD_WIDTH]>); impl SimdSize for f32 { const SIMD_SIZE: usize = SIMD_WIDTH; }