[UX] Remove noisy CT UnquantizedLinearMethod warn (#33273)

Signed-off-by: mgoin <mgoin64@gmail.com>
This commit is contained in:
Michael Goin
2026-01-28 19:09:30 -05:00
committed by GitHub
parent 6bf3b46d78
commit 141cd43967

View File

@@ -751,11 +751,7 @@ class CompressedTensorsConfig(QuantizationConfig):
model_compression_config=model_compression_config,
)
elif weight_quant is None:
logger.warning_once(
"Acceleration for non-quantized schemes is "
"not supported by Compressed Tensors. "
"Falling back to UnquantizedLinearMethod"
)
# Falling back to UnquantizedLinearMethod
return None
else: