1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! GPU kernels for BitNet quantization operations.
//!
//! This module provides CubeCL-based GPU kernels for efficient
//! ternary weight x activation matrix multiplication.
//!
//! ## Kernels
//!
//! - `absmean_quantize` - Quantize weights to ternary {-1, 0, +1}
//! - `ternary_dequantize` - Convert ternary back to float
//! - `ternary_matmul_gpu` - Optimized ternary matmul (no multiply ops!)
//! - `packed_ternary_matmul` - 2-bit packed weights for reduced bandwidth
//! - `bitlinear_forward` - Fused LayerNorm + ternary matmul
//!
//! ## Feature Gate
//!
//! Requires the `cuda` feature to be enabled:
//!
//! ```toml
//! [dependencies]
//! bitnet-quantize = { version = "0.1", features = ["cuda"] }
//! ```
pub use ;
/// Check if CUDA kernels are available.