[Bugfix] Suppress log on non-ROCm platform (#32703)

Signed-off-by: tjtanaa <tunjian.tan@embeddedllm.com>
This commit is contained in:
TJian
2026-01-21 05:38:20 +08:00
committed by GitHub
parent 2261340806
commit 9b67338b78

View File

@@ -154,10 +154,11 @@ try:
dispatch_key=current_platform.dispatch_key,
)
except (ImportError, AttributeError, RuntimeError):
logger.warning(
"AITER is not found or QuarkOCP_MX is not supported on the current "
"platform. QuarkOCP_MX quantization will not be available."
)
if current_platform.is_rocm():
logger.warning(
"AITER is not found or QuarkOCP_MX is not supported on the current "
"platform. QuarkOCP_MX quantization will not be available."
)
dynamic_mxfp4_quant = gemm_afp4wfp4 = None