[Chore] Separate out vllm.utils.func (#26904)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
This commit is contained in:
Cyrus Leung
2025-10-15 21:03:58 +08:00
committed by GitHub
parent f57438338d
commit 136a17fe6e
18 changed files with 407 additions and 371 deletions

View File

@@ -17,7 +17,7 @@ from vllm.logger import init_logger
from vllm.lora.request import LoRARequest
from vllm.sequence import ExecuteModelRequest
from vllm.tasks import SupportedTask
from vllm.utils import make_async
from vllm.utils.func import make_async
from vllm.v1.outputs import SamplerOutput
from vllm.v1.worker.worker_base import WorkerBase

View File

@@ -24,8 +24,8 @@ from vllm.utils import (
get_distributed_init_method,
get_ip,
get_open_port,
make_async,
)
from vllm.utils.func import make_async
from vllm.v1.outputs import SamplerOutput
if ray is not None: