We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ea6cb2 commit ff314b9Copy full SHA for ff314b9
vllm/config.py
@@ -2016,15 +2016,9 @@ def compute_hash(self) -> str:
2016
def __post_init__(self) -> None:
2017
if self.max_model_len is None:
2018
self.max_model_len = 8192
2019
- logger.warning_once(
2020
- "max_model_len was is not set. Defaulting to arbitrary value "
2021
- "of %d.", self.max_model_len)
2022
2023
if self.max_num_seqs is None:
2024
self.max_num_seqs = 128
2025
2026
- "max_num_seqs was is not set. Defaulting to arbitrary value "
2027
- "of %d.", self.max_num_seqs)
2028
2029
if self.max_num_batched_tokens is None:
2030
if self.enable_chunked_prefill:
0 commit comments