nemo_flow_adaptive/learner/mod.rs
1// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Adaptive learners that derive runtime hints from observed executions.
5
6/// Learner that builds latency sensitivity hints from run history.
7pub mod latency;
8/// Common learner trait implemented by adaptive background processors.
9pub mod traits;
10
11#[cfg(test)]
12#[path = "../../tests/unit/learner_tests.rs"]
13mod tests;