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 7a03145 commit ae6dad2Copy full SHA for ae6dad2
vllm/config/parallel.py
@@ -670,11 +670,7 @@ def _verify_args(self) -> Self:
670
"save_load_window is set to True, but save_dir is provided."
671
)
672
if self.eplb_config.save_load_window and self.eplb_config.static:
673
- raise ValueError(
674
- "save_load_window cannot be set to true with static eplb."
675
- )
+ raise ValueError("save_load_window cannot be set to true with static eplb.")
676
if self.eplb_config.use_async and self.eplb_config.static:
677
678
- "use_async cannot be set to true with static eplb."
679
+ raise ValueError("use_async cannot be set to true with static eplb.")
680
return self
0 commit comments