Move ParallelConfig from config/__init__.py to config/parallel.py (#22565)

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor
2025-08-09 16:33:46 +01:00
committed by GitHub
parent 56186474f6
commit 2d18256e47
4 changed files with 379 additions and 357 deletions

View File

@@ -16,7 +16,7 @@ from vllm.logger import init_logger
from vllm.utils import is_torch_equal_or_newer, resolve_obj_by_qualname
if TYPE_CHECKING:
from vllm.config.config import VllmConfig
from vllm.config import VllmConfig
else:
VllmConfig = object