nemo-flow-adaptive 0.2.0

Adaptive runtime primitives and Redis-backed learning components for NeMo Flow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Adaptive learners that derive runtime hints from observed executions.

/// Learner that builds latency sensitivity hints from run history.
pub mod latency;
/// Common learner trait implemented by adaptive background processors.
pub mod traits;

#[cfg(test)]
#[path = "../../tests/unit/learner_tests.rs"]
mod tests;