Skip to content

Commit be66d9b

Browse files
authored
Fix warning msg on quantization (#1715)
1 parent e105424 commit be66d9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vllm/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ def _verify_quantization(self) -> None:
137137
raise ValueError(
138138
f"Unknown quantization method: {self.quantization}. Must "
139139
f"be one of {supported_quantization}.")
140-
logger.warning(f"{self.quantization} quantization is not fully "
141-
"optimized yet. The speed can be slower than "
142-
"non-quantized models.")
140+
logger.warning(f"{self.quantization} quantization is not fully "
141+
"optimized yet. The speed can be slower than "
142+
"non-quantized models.")
143143

144144
def verify_with_parallel_config(
145145
self,

0 commit comments

Comments
 (0)