crabml 0.1.0

crabml core package
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(portable_simd)]
#![feature(slice_as_chunks)]
#![feature(stdsimd)]
#![feature(thread_local)]
#![feature(lazy_cell)]

#[allow(unreachable_patterns)]
pub mod backends;
pub mod error;
pub mod gguf;
pub mod tensor;
pub mod tokenizer;