dynamo_mocker/lib.rs
1// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Mock LLM scheduler and KV manager for testing.
5//!
6//! This crate provides a mock implementation of an LLM scheduler that simulates
7//! KV cache management, request scheduling, and token generation timing without
8//! requiring actual GPU resources or a full distributed runtime.
9
10pub mod common;
11pub mod engine;
12pub(crate) mod engine_adapter;
13pub(crate) mod engine_observations;
14pub(crate) mod generalized_live;
15pub mod grouped_scheduler;
16pub mod live;
17pub mod loadgen;
18pub mod replay;
19pub mod scheduler;
20pub mod services;