Skip to main content

bitnet_quantize/export/
mod.rs

1//! Export functionality for BitNet models.
2//!
3//! This module provides export to various formats:
4//! - GGUF (requires `gguf-export` feature)
5
6#[cfg(feature = "gguf-export")]
7mod gguf;
8
9#[cfg(feature = "gguf-export")]
10pub use gguf::export_gguf;