From be66d9b1252bdc8aa198106a819583f104928d44 Mon Sep 17 00:00:00 2001 From: Woosuk Kwon Date: Sat, 18 Nov 2023 21:49:55 -0800 Subject: [PATCH] Fix warning msg on quantization (#1715) --- vllm/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vllm/config.py b/vllm/config.py index 1624c7c5d07ca..5fbfbd769296f 100644 --- a/vllm/config.py +++ b/vllm/config.py @@ -137,9 +137,9 @@ def _verify_quantization(self) -> None: raise ValueError( f"Unknown quantization method: {self.quantization}. Must " f"be one of {supported_quantization}.") - logger.warning(f"{self.quantization} quantization is not fully " - "optimized yet. The speed can be slower than " - "non-quantized models.") + logger.warning(f"{self.quantization} quantization is not fully " + "optimized yet. The speed can be slower than " + "non-quantized models.") def verify_with_parallel_config( self,