Skip to main content

embedding_avx2

Function embedding_avx2 

Source
pub unsafe fn embedding_avx2(
    weight: &[f32],
    token_ids: &[u32],
    vocab_size: usize,
    dim: usize,
    output: &mut [f32],
)
Expand description

AVX2 embedding lookup โ€“ delegates to scalar (memory-bound, no compute).

ยงSafety

Requires AVX2 support.