candle-coreml 0.3.1

CoreML inference engine for Candle tensors - provides Apple CoreML/ANE integration with real tokenization, safety fixes, and model calibration awareness
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Cache module for candle-coreml
//!
//! This module provides cache management functionality including:
//! - Model file caching
//! - Configuration caching
//! - Cache cleanup utilities

pub mod manager;

// Re-export main types for convenience
pub use manager::CacheManager;