Skip to content

Commit 141cd43

Browse files
authored
[UX] Remove noisy CT UnquantizedLinearMethod warn (vllm-project#33273)
Signed-off-by: mgoin <[email protected]>
1 parent 6bf3b46 commit 141cd43

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

vllm/model_executor/layers/quantization/compressed_tensors/compressed_tensors.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -751,11 +751,7 @@ def get_scheme(
751751
model_compression_config=model_compression_config,
752752
)
753753
elif weight_quant is None:
754-
logger.warning_once(
755-
"Acceleration for non-quantized schemes is "
756-
"not supported by Compressed Tensors. "
757-
"Falling back to UnquantizedLinearMethod"
758-
)
754+
# Falling back to UnquantizedLinearMethod
759755
return None
760756

761757
else:

0 commit comments

Comments
 (0)