third_party/vllm/ now tracked in git for direct patch management.
Based on vLLM v0.18.1 release with one patch applied:
vllm/v1/core/sched/scheduler.py:
Replace fatal assert with graceful skip when KV transfer callback
arrives for an already-aborted request during PD disaggregated serving.
Future vLLM modifications should be made directly in third_party/vllm/
and committed normally. The patches/ directory is kept as documentation
of what changed from upstream.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
from contextlib import contextmanager
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
|
|
from vllm.platforms.interface import DeviceCapability
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_cuda_platform():
|
|
"""
|
|
Fixture that returns a factory for creating mocked CUDA platforms.
|
|
|
|
Usage:
|
|
def test_something(mock_cuda_platform):
|
|
with mock_cuda_platform(is_cuda=True, capability=(9, 0)):
|
|
# test code
|
|
"""
|
|
|
|
@contextmanager
|
|
def _mock_platform(is_cuda: bool = True, capability: tuple[int, int] | None = None):
|
|
mock_platform = MagicMock()
|
|
mock_platform.is_cuda.return_value = is_cuda
|
|
if capability is not None:
|
|
mock_platform.get_device_capability.return_value = DeviceCapability(
|
|
*capability
|
|
)
|
|
with patch("vllm.platforms.current_platform", mock_platform):
|
|
yield mock_platform
|
|
|
|
return _mock_platform
|