[V0 deprecation] Remove platform v1 controling interface (#25410)

Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn>
This commit is contained in:
Isotr0py
2025-09-23 09:48:12 +08:00
committed by GitHub
parent 9949aa2ef1
commit 6fa78d8f23
8 changed files with 0 additions and 81 deletions

View File

@@ -13,7 +13,6 @@ from vllm import SamplingParams
from vllm.config import VllmConfig
from vllm.engine.arg_utils import AsyncEngineArgs
from vllm.inputs import PromptType
from vllm.platforms import current_platform
from vllm.sampling_params import RequestOutputKind
from vllm.v1.engine.async_llm import AsyncLLM
from vllm.v1.engine.core_client import DPAsyncMPClient
@@ -29,10 +28,6 @@ engine_args = AsyncEngineArgs(
data_parallel_size=DP_SIZE,
)
if not current_platform.supports_v1(engine_args.create_model_config()):
pytest.skip(reason="Requires V1-supporting platform.",
allow_module_level=True)
async def generate(
engine: AsyncLLM,