pmetal 0.1.0

High-performance LLM fine-tuning framework for Apple Silicon
1
2
3
4
5
6
7
8
9
fn main() {
    let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap_or_default();
    if target_os != "macos" {
        panic!(
            "pmetal requires macOS (Apple Silicon). \
             Cross-platform components are available separately via `pmetal-distributed`."
        );
    }
}