We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0ef8a commit c17d46bCopy full SHA for c17d46b
vllm/v1/engine/core.py
@@ -607,14 +607,9 @@ def __init__(
607
608
self._init_data_parallel(vllm_config)
609
610
- # Set vllm_config context before EngineCore initialization
611
- # so that models can access the config during __init__
612
- from vllm.config import set_current_vllm_config
613
-
614
- with set_current_vllm_config(vllm_config):
615
- super().__init__(
616
- vllm_config, executor_class, log_stats, executor_fail_callback
617
- )
+ super().__init__(
+ vllm_config, executor_class, log_stats, executor_fail_callback
+ )
618
619
# Background Threads and Queues for IO. These enable us to
620
# overlap ZMQ socket IO with GPU since they release the GIL,
0 commit comments