mod.rs 449 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! SGLang scheduler simulation with adaptive admission control.
//!
//! Reference: sglang/python/sglang/srt/managers/scheduler.py

mod config;
mod core;
mod decode;
mod live;
mod policy;
mod prefill;
mod request;

pub(crate) use core::SglangCore;
pub use live::SglangScheduler;

#[cfg(test)]
mod tests;