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
142 lines
4.9 KiB
Python
142 lines
4.9 KiB
Python
"""
|
|
SGLang Unified Plugin Framework.
|
|
|
|
Supports two types of plugins via setuptools entry_points:
|
|
1. Hardware Platform Plugins (sglang.srt.platforms) - register custom hardware platforms
|
|
2. General Plugins (sglang.srt.plugins) - inject hooks into functions/methods, replace classes, etc.
|
|
|
|
Plugins are discovered automatically when installed via pip.
|
|
- Platform plugins: use ``SGLANG_PLATFORM`` to select when multiple are installed.
|
|
- General plugins: use ``SGLANG_PLUGINS`` (comma-separated) to restrict which are loaded.
|
|
"""
|
|
|
|
import logging
|
|
from collections.abc import Callable
|
|
from importlib.metadata import entry_points
|
|
from typing import Any
|
|
|
|
from sglang.srt.environ import envs
|
|
from sglang.srt.plugins.hook_registry import (
|
|
HookRegistry,
|
|
HookSource,
|
|
_current_plugin_source,
|
|
)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Entry point group names
|
|
PLATFORM_PLUGINS_GROUP = "sglang.srt.platforms"
|
|
GENERAL_PLUGINS_GROUP = "sglang.srt.plugins"
|
|
|
|
# Guard against multiple loads in the same process
|
|
_plugins_loaded = False
|
|
|
|
|
|
def load_plugins_by_group(
|
|
group: str,
|
|
excluded_dists: set[str] | None = None,
|
|
) -> dict[str, tuple[Callable[[], Any], str | None]]:
|
|
"""
|
|
Discover and load plugins registered under the given entry point group.
|
|
|
|
Args:
|
|
group: The setuptools entry_point group name.
|
|
excluded_dists: Distribution names to skip. Plugins from these
|
|
distributions are never ``ep.load()``-ed (avoids importing
|
|
their modules and pulling hardware-specific dependencies).
|
|
|
|
Returns:
|
|
Dictionary mapping plugin name to ``(callable, dist_name)``.
|
|
"""
|
|
# SGLANG_PLUGINS whitelist (comma-separated plugin names)
|
|
allowed_set: set[str] | None = None
|
|
allowed_str = envs.SGLANG_PLUGINS.get()
|
|
if allowed_str:
|
|
allowed_set = {x.strip() for x in allowed_str.split(",") if x.strip()}
|
|
|
|
discovered = entry_points(group=group)
|
|
if len(discovered) == 0:
|
|
logger.debug("No plugins found for group %s.", group)
|
|
return {}
|
|
|
|
logger.info("Available plugins for group %s:", group)
|
|
for ep in discovered:
|
|
logger.info(" - %s -> %s", ep.name, ep.value)
|
|
|
|
plugins: dict[str, tuple[Callable[[], Any], str | None]] = {}
|
|
for ep in discovered:
|
|
if allowed_set is not None and ep.name not in allowed_set:
|
|
logger.info("Skipping plugin %s (not in SGLANG_PLUGINS)", ep.name)
|
|
continue
|
|
dist_name = ep.dist.name if ep.dist else None
|
|
if excluded_dists and dist_name in excluded_dists:
|
|
logger.info(
|
|
"Skipping plugin %s (dist %s excluded by SGLANG_PLATFORM)",
|
|
ep.name,
|
|
dist_name,
|
|
)
|
|
continue
|
|
try:
|
|
func = ep.load()
|
|
plugins[ep.name] = (func, dist_name)
|
|
logger.info("Loaded plugin %s from group %s", ep.name, group)
|
|
except Exception:
|
|
logger.exception("Failed to load plugin %s from group %s", ep.name, group)
|
|
|
|
return plugins
|
|
|
|
|
|
def _get_excluded_dists() -> set[str]:
|
|
"""Compute dist names to skip when ``SGLANG_PLATFORM`` is set.
|
|
|
|
Returns dist names that provide a platform plugin but are NOT the one
|
|
selected by ``SGLANG_PLATFORM``. This prevents unselected platform
|
|
packages from registering hooks that pull their hardware dependencies.
|
|
"""
|
|
selected = envs.SGLANG_PLATFORM.get()
|
|
if not selected:
|
|
return set()
|
|
platform_eps = entry_points(group=PLATFORM_PLUGINS_GROUP)
|
|
return {ep.dist.name for ep in platform_eps if ep.dist and ep.name != selected}
|
|
|
|
|
|
def load_plugins():
|
|
"""
|
|
Load and execute all general plugins, then apply registered hooks.
|
|
|
|
Idempotent - safe to call multiple times. General plugins are functions
|
|
whose side effects (registering hooks, replacing classes, etc.) are the
|
|
desired behavior. Return values are ignored.
|
|
|
|
When ``SGLANG_PLATFORM`` is set, general plugins from unselected platform
|
|
packages are automatically skipped (avoids pulling their dependencies).
|
|
|
|
After all plugins execute, ``HookRegistry.apply_hooks()`` is called
|
|
automatically so callers only need this single function call.
|
|
|
|
This should be called early in every process (main, engine core, workers).
|
|
"""
|
|
global _plugins_loaded
|
|
if _plugins_loaded:
|
|
return
|
|
_plugins_loaded = True
|
|
|
|
plugins = load_plugins_by_group(
|
|
GENERAL_PLUGINS_GROUP,
|
|
excluded_dists=_get_excluded_dists(),
|
|
)
|
|
|
|
for name, (func, dist_name) in plugins.items():
|
|
source = HookSource(plugin_name=name, dist_name=dist_name)
|
|
token = _current_plugin_source.set(source)
|
|
try:
|
|
func()
|
|
logger.info("Executed general plugin: %s", name)
|
|
except Exception:
|
|
logger.exception("Failed to execute general plugin: %s", name)
|
|
finally:
|
|
_current_plugin_source.reset(token)
|
|
|
|
# Apply all registered hooks (idempotent — already-patched targets are skipped).
|
|
HookRegistry.apply_hooks()
|