File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -90,13 +90,6 @@ def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
90
90
if cache_config and cache_config .block_size is None :
91
91
cache_config .block_size = 64
92
92
93
- # FIXME: Temporarily forcing eager mode
94
- # remove after t.compile support stabilizes.
95
- if (envs .VLLM_USE_V1 and model_config is not None
96
- and not vllm_config .model_config .enforce_eager ):
97
- from vllm .config import CompilationLevel
98
- vllm_config .compilation_config .level = CompilationLevel .NO_COMPILATION # noqa: E501
99
-
100
93
# Instances created using VllmConfig() typically have model_config as
101
94
# None by default. The modification involves adding a check to prevent
102
95
# potential null exceptions check and update model config.
@@ -202,4 +195,6 @@ def get_global_graph_pool(self) -> Any:
202
195
"""
203
196
Currently xpu does NOT support Graph model.
204
197
"""
198
+ logger .warning ("XPU does not support graph pool. This may be unsafe "
199
+ "if you enable graphmode on XPU currently." )
205
200
return None
You can’t perform that action at this time.
0 commit comments