Skip to main content

fidget_jit/
float_slice.rs

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