fidget-jit 0.4.3

Native JIT compiler for Fidget
Documentation
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;
}