entrenar 0.7.12

Training & Optimization library with autograd, LoRA, quantization, and model merging
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Platform Efficiency (ENT-012)
//!
//! Provides platform-specific efficiency metrics for server and edge deployments.

mod budget;
mod edge;
mod platform_type;
mod server;

#[cfg(test)]
mod tests;

// Re-export all public types
pub use budget::{BudgetViolation, WasmBudget};
pub use edge::EdgeEfficiency;
pub use platform_type::PlatformEfficiency;
pub use server::ServerEfficiency;