oxibonsai-model 0.1.2

Qwen3-8B Transformer implementation for OxiBonsai 1-bit inference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Auto-generated module structure

pub mod functions;
pub mod types;

// Re-export all types
#[cfg(any(
    feature = "metal",
    all(
        feature = "native-cuda",
        any(target_os = "linux", target_os = "windows")
    )
))]
pub(crate) use functions::blocks_as_bytes;
#[cfg(all(feature = "metal", target_os = "macos"))]
pub(crate) use functions::blocks_as_bytes_ternary;
pub use types::*;