Skip to main content

linear_avx2

Function linear_avx2 

Source
pub unsafe fn linear_avx2(
    x: &[f32],
    weight: &[f32],
    bias: &[f32],
    batch: usize,
    in_features: usize,
    out_features: usize,
    output: &mut [f32],
)
Expand description

AVX2 linear projection โ€“ delegates to scalar.

ยงSafety

Requires AVX2 support.