Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions vllm/config/compilation.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,6 @@ def validate_compile_cache_save_format(cls, value: str) -> str:
return value

@field_validator(
"level",
"mode",
"cudagraph_mode",
"max_cudagraph_capture_size",
Expand Down Expand Up @@ -1078,7 +1077,7 @@ def init_backend(
if self.mode is None:
raise ValueError(
"No compilation mode is set. This method should only be "
"called via vllm config where the level is set if none is "
"called via vllm config where the mode is set if none is "
"provided."
)
if self.mode == CompilationMode.NONE:
Expand Down
Loading