94057c3d3e
PR Test (NPU) / check-changes (push) Has been cancelled
PR Test (NPU) / pr-gate (push) Has been cancelled
PR Test (NPU) / set-image-config (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-4-npu-a3 (push) Has been cancelled
PR Test (NPU) / stage-b-test-16-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-1-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-2-npu-a3 (push) Has been cancelled
PR Test (Arm64) / pr-gate (push) Has been cancelled
PR Test (Arm64) / check-changes (push) Has been cancelled
PR Test (Arm64) / build-test (push) Has been cancelled
PR Test (sgl-router) / gate (push) Has been cancelled
PR Test (sgl-router) / tier-1 — lint (push) Has been cancelled
PR Test (sgl-router) / tier-2 — build + test (push) Has been cancelled
PR Test (sgl-router) / tier-3 — docker (placeholder) (push) Has been cancelled
PR Test (sgl-router) / tier-3 — k8s integration (push) Has been cancelled
PR Test (sgl-router) / tier-3 — e2e (push) Has been cancelled
PR Test (sgl-router) / finish (push) Has been cancelled
PR Test (NPU) / single-node-poc (map[name:qwen3_6_27b_w8a8_1p_in64k_out1k_50ms runner:linux-aarch64-a3-2 test_case:test/registered/ascend/performance/qwen3_6_27b/test_npu_qwen3_6_27b_w8a8_1p_in64k_out1k_50ms.py test_type:perf]) (push) Has been cancelled
PR Test (NPU) / pr-test-npu-finish (push) Has been cancelled
PR Test (Xeon) / pr-gate (push) Has been cancelled
PR Test (Xeon) / check-changes (push) Has been cancelled
PR Test (Xeon) / build-test (, xeon-gnr, base-b-test-cpu) (push) Has been cancelled
PR Test (XPU) / check-changes (push) Has been cancelled
PR Test (XPU) / pr-gate (push) Has been cancelled
PR Test (XPU) / stage-a-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / wait-for-stage-a (push) Has been cancelled
PR Test (XPU) / stage-b-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / finish (push) Has been cancelled
CI Model Inventory / build-inventory (push) Has been cancelled
Lint / lint (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Compilation Check (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Manual Policy (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Request Processing (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Summary (push) Has been cancelled
PR Test (SMG) / build-wheel (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on windows (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (x86_64 - auto) (push) Has been cancelled
PR Test (SMG) / python-unit-tests (push) Has been cancelled
PR Test (SMG) / unit-tests (push) Has been cancelled
PR Test (SMG) / benchmarks (push) Has been cancelled
PR Test (SMG) / chat-completions (push) Has been cancelled
PR Test (SMG) / chat-completions-4gpu (push) Has been cancelled
PR Test (SMG) / e2e (push) Has been cancelled
PR Test (SMG) / docker-build-test (push) Has been cancelled
PR Test (SMG) / k8s-integration (push) Has been cancelled
PR Test (SMG) / finish (push) Has been cancelled
PR Test (SMG) / summarize-benchmarks (push) Has been cancelled
Release SGLang Model Gateway Docker Image / publish (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Build SDist (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Upload to PyPI (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (aarch64, 12.9, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (x86_64, 12.9, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu129 (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (aarch64, 13.0, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (x86_64, 13.0, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu130 (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 700) (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 720) (push) Has been cancelled
Release SGLang Kernels / release-rocm700 (push) Has been cancelled
Release SGLang Kernels / release-rocm720 (push) Has been cancelled
Release SGLang Kernels / build-musa43 (43, 3.10) (push) Has been cancelled
Release SGLang Kernels / release-musa43 (push) Has been cancelled
247 lines
9.3 KiB
Python
247 lines
9.3 KiB
Python
import unittest
|
|
from typing import Any, Dict
|
|
|
|
from sglang.test.scripted_runtime.context import ScriptedContext
|
|
from sglang.test.scripted_runtime.test_case import ScriptedTestCase
|
|
from sglang.test.scripted_runtime_chunked_helpers import (
|
|
DEFAULT_CHUNK_SIZE,
|
|
VERY_LONG_PROMPT_LEN,
|
|
base_engine_kwargs,
|
|
run_until,
|
|
run_until_all_finished,
|
|
run_until_finished,
|
|
)
|
|
from sglang.test.test_utils import DEFAULT_MODEL_NAME_FOR_TEST
|
|
|
|
|
|
def _pp_engine_kwargs(*, pp_size: int = 2, **overrides: Any) -> Dict[str, Any]:
|
|
return base_engine_kwargs(
|
|
model_path=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
pp_size=pp_size,
|
|
**overrides,
|
|
)
|
|
|
|
|
|
def _expected_chunks(prompt_len: int, chunk_size: int) -> int:
|
|
if prompt_len <= chunk_size:
|
|
return 0
|
|
return (prompt_len + chunk_size - 1) // chunk_size
|
|
|
|
|
|
def _drain_until_released(t, *handles):
|
|
for _ in range(16):
|
|
if all(
|
|
h.kv_pages == 0 and (h.req is None or h.req.req_pool_idx is None)
|
|
for h in handles
|
|
):
|
|
return
|
|
yield
|
|
|
|
|
|
class TestPPBasic(ScriptedTestCase):
|
|
ENGINE_KWARGS = _pp_engine_kwargs()
|
|
|
|
def test_pp_abort_during_inflight_chunk(self):
|
|
self.server.execute_script(self._script_pp_abort_during_inflight_chunk)
|
|
|
|
@staticmethod
|
|
def _script_pp_abort_during_inflight_chunk(t: ScriptedContext):
|
|
r = t.start_req(prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=4)
|
|
yield from run_until(r, lambda h: h.is_chunking and h.chunks_done >= 1)
|
|
t.abort(r)
|
|
yield from _drain_until_released(t, r)
|
|
assert r.kv_pages == 0
|
|
assert r.lock_refs == 0
|
|
|
|
def test_pp_last_chunk_cross_mb_kv_correctness(self):
|
|
self.server.execute_script(self._script_pp_last_chunk_cross_mb_kv_correctness)
|
|
|
|
@staticmethod
|
|
def _script_pp_last_chunk_cross_mb_kv_correctness(t: ScriptedContext):
|
|
r = t.start_req(
|
|
prompt_len=VERY_LONG_PROMPT_LEN,
|
|
max_new_tokens=8,
|
|
prompt_token=7,
|
|
ignore_eos=True,
|
|
)
|
|
yield from run_until_finished(r, max_steps=800)
|
|
assert r.finished
|
|
expected_chunks = _expected_chunks(VERY_LONG_PROMPT_LEN, DEFAULT_CHUNK_SIZE)
|
|
assert r.chunks_done == expected_chunks, (
|
|
f"cross-mb chunked prefill must complete all {expected_chunks} chunks, "
|
|
f"got chunks_done={r.chunks_done}"
|
|
)
|
|
|
|
def test_pp_static_chunk_size_predictor_returns_none(self):
|
|
self.server.execute_script(
|
|
self._script_pp_static_chunk_size_predictor_returns_none
|
|
)
|
|
|
|
@staticmethod
|
|
def _script_pp_static_chunk_size_predictor_returns_none(t: ScriptedContext):
|
|
sched = t.scheduler
|
|
assert sched.enable_dynamic_chunking is False
|
|
assert sched.predict_next_chunk_size(0) is None
|
|
assert sched.predict_next_chunk_size(VERY_LONG_PROMPT_LEN // 2) is None
|
|
r = t.start_req(prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=2)
|
|
yield from run_until_finished(r, max_steps=800)
|
|
assert r.finished
|
|
expected = _expected_chunks(VERY_LONG_PROMPT_LEN, DEFAULT_CHUNK_SIZE)
|
|
assert r.chunks_done == expected, (
|
|
f"static chunked_prefill_size must produce exactly {expected} chunks, "
|
|
f"got {r.chunks_done}"
|
|
)
|
|
|
|
def test_pp_multi_microbatch_chunks_done_aggregation(self):
|
|
self.server.execute_script(
|
|
self._script_pp_multi_microbatch_chunks_done_aggregation
|
|
)
|
|
|
|
@staticmethod
|
|
def _script_pp_multi_microbatch_chunks_done_aggregation(t: ScriptedContext):
|
|
r = t.start_req(prompt_len=4 * DEFAULT_CHUNK_SIZE, max_new_tokens=2)
|
|
yield from run_until_finished(r, max_steps=800)
|
|
assert r.finished
|
|
assert r.chunks_done >= 4, (
|
|
f"PP=2 multi-chunk req should aggregate >=4 chunks_done across "
|
|
f"microbatches, got {r.chunks_done}"
|
|
)
|
|
|
|
def test_pp_two_chunked_one_per_mb_simultaneous(self):
|
|
self.server.execute_script(self._script_pp_two_chunked_one_per_mb_simultaneous)
|
|
|
|
@staticmethod
|
|
def _script_pp_two_chunked_one_per_mb_simultaneous(t: ScriptedContext):
|
|
r1 = t.start_req(
|
|
prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=2, prompt_token=1
|
|
)
|
|
r2 = t.start_req(
|
|
prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=2, prompt_token=2
|
|
)
|
|
yield from run_until_all_finished(handles=[r1, r2], max_steps=800)
|
|
assert r1.finished and r2.finished
|
|
assert r1.chunks_done >= 2 and r2.chunks_done >= 2
|
|
assert r1.kv_pages == 0 and r2.kv_pages == 0
|
|
assert r1.lock_refs == 0 and r2.lock_refs == 0
|
|
|
|
def test_pp_retract_chunked_in_middle_mb(self):
|
|
self.server.execute_script(self._script_pp_retract_chunked_in_middle_mb)
|
|
|
|
@staticmethod
|
|
def _script_pp_retract_chunked_in_middle_mb(t: ScriptedContext):
|
|
r = t.start_req(prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=2)
|
|
yield from run_until(r, lambda h: h.is_chunking and h.chunks_done >= 1)
|
|
t.pause_generation(mode="retract")
|
|
yield
|
|
t.continue_generation()
|
|
yield from run_until_finished(r, max_steps=800)
|
|
assert r.finished
|
|
assert r.kv_pages == 0
|
|
assert r.lock_refs == 0
|
|
|
|
def test_pp_chunked_req_to_exclude_pp_context(self):
|
|
self.server.execute_script(self._script_pp_chunked_req_to_exclude_pp_context)
|
|
|
|
@staticmethod
|
|
def _script_pp_chunked_req_to_exclude_pp_context(t: ScriptedContext):
|
|
r = t.start_req(prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=2)
|
|
yield from run_until(r, lambda h: h.is_chunking)
|
|
t.abort(r)
|
|
r2 = t.start_req(prompt_len=DEFAULT_CHUNK_SIZE * 2, max_new_tokens=2)
|
|
yield from run_until_finished(r2, max_steps=400)
|
|
assert r2.finished
|
|
assert r2.kv_pages == 0
|
|
assert r2.lock_refs == 0
|
|
|
|
|
|
@unittest.skip(
|
|
"PD-Multiplexing is mutually exclusive with pipeline parallelism: ServerArgs "
|
|
"asserts pp_size == 1 (server_args.py:7284-7287, 'PD-Multiplexing is only "
|
|
"supported with pipeline parallelism disabled'). It further requires "
|
|
"chunked_prefill_size == -1 and disable_overlap_schedule, both of which the PP "
|
|
"chunked scripted-runtime harness mandates the opposite of. enable_pdmux=True "
|
|
"with pp_size=2 therefore cannot launch -- the spawned server dies on that "
|
|
"assert and setUpClass times out on the handshake. This is a genuine engine "
|
|
"config constraint, not a test bug, so the pdmux-under-PP scenario is not a "
|
|
"valid combination to exercise here."
|
|
)
|
|
class TestPPPdmux(ScriptedTestCase):
|
|
ENGINE_KWARGS = _pp_engine_kwargs(enable_pdmux=True)
|
|
|
|
def test_pp_split_prefill_chunked_no_merge_assert(self):
|
|
self.server.execute_script(
|
|
self._script_pp_split_prefill_chunked_no_merge_assert
|
|
)
|
|
|
|
@staticmethod
|
|
def _script_pp_split_prefill_chunked_no_merge_assert(t: ScriptedContext):
|
|
r = t.start_req(prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=2)
|
|
yield from run_until_finished(r, max_steps=800)
|
|
assert (
|
|
r.finished
|
|
), "engine died before req finished — merge_batch assert may have tripped"
|
|
assert r.chunks_done >= 2, (
|
|
f"pdmux + chunked path must produce >=2 chunks to exercise "
|
|
f"split_prefill_batch filter; got chunks_done={r.chunks_done}"
|
|
)
|
|
|
|
|
|
class TestPPDynamic(ScriptedTestCase):
|
|
ENGINE_KWARGS = _pp_engine_kwargs(enable_dynamic_chunking=True)
|
|
|
|
def test_naive_pp_chunked(self):
|
|
self.server.execute_script(self._script_naive_pp_chunked)
|
|
|
|
@staticmethod
|
|
def _script_naive_pp_chunked(t: ScriptedContext):
|
|
r = t.start_req(
|
|
prompt_len=VERY_LONG_PROMPT_LEN,
|
|
max_new_tokens=4,
|
|
prompt_token=3,
|
|
ignore_eos=True,
|
|
)
|
|
yield from run_until_finished(r, max_steps=800)
|
|
assert r.finished
|
|
assert r.chunks_done >= 2, f"expected >=2 chunks, got {r.chunks_done}"
|
|
|
|
def test_pp_dynamic_chunk_size_recompute_branch_taken(self):
|
|
self.server.execute_script(
|
|
self._script_pp_dynamic_chunk_size_recompute_branch_taken
|
|
)
|
|
|
|
@staticmethod
|
|
def _script_pp_dynamic_chunk_size_recompute_branch_taken(t: ScriptedContext):
|
|
sched = t.scheduler
|
|
assert sched.enable_dynamic_chunking is True
|
|
assert sched.length_predictor is not None
|
|
assert sched.length_predictor.is_ready is True
|
|
dynamic_size = sched.predict_next_chunk_size(0)
|
|
assert dynamic_size is not None
|
|
assert isinstance(dynamic_size, int) and dynamic_size > 0
|
|
r = t.start_req(
|
|
prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=2, prompt_token=4
|
|
)
|
|
yield from run_until_finished(r, max_steps=800)
|
|
assert r.finished
|
|
assert r.chunks_done >= 2, f"expected >=2 chunks, got {r.chunks_done}"
|
|
|
|
|
|
class TestPPSize4(ScriptedTestCase):
|
|
ENGINE_KWARGS = _pp_engine_kwargs(pp_size=4)
|
|
|
|
def test_pp_size_4_chunked_completes(self):
|
|
self.server.execute_script(self._script_pp_size_4_chunked_completes)
|
|
|
|
@staticmethod
|
|
def _script_pp_size_4_chunked_completes(t: ScriptedContext):
|
|
r = t.start_req(prompt_len=VERY_LONG_PROMPT_LEN, max_new_tokens=4)
|
|
yield from run_until_finished(r, max_steps=800)
|
|
assert r.finished
|
|
assert r.chunks_done >= 4
|
|
assert r.kv_pages == 0
|
|
assert r.lock_refs == 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|