Skip to main content

qualia_core_db/inference/ambient_orchestration/
mod.rs

1//! Ambient Sub-Threshold Orchestration Implementation
2//!
3//! This module provides ambient sub-threshold orchestration for mobile scientific computing
4//! using NNAPI/CoreML integration. Designed for edge optimization and power-efficient processing.
5
6mod manager;
7mod monitor;
8mod power;
9mod scheduler;
10mod types;
11mod workload;
12
13pub use manager::*;
14pub use monitor::*;
15pub use power::*;
16pub use scheduler::*;
17pub use types::*;
18pub use workload::*;
19
20#[cfg(test)]
21mod tests;