[Misc] [MXFP8] Drop sm100 mxfp8 warning (#21881)
This commit is contained in:
@@ -1071,8 +1071,10 @@ class ModelConfig:
|
|||||||
f"supported in ROCm."
|
f"supported in ROCm."
|
||||||
)
|
)
|
||||||
if self.quantization not in optimized_quantization_methods:
|
if self.quantization not in optimized_quantization_methods:
|
||||||
# Don't warn for MXFP4 on SM100 since it has optimized kernels
|
# Don't warn for MXFP4/MXFP8 on SM100 since they have optimized kernels
|
||||||
if not (self.quantization == "mxfp4" and is_sm100_supported()):
|
if not (
|
||||||
|
self.quantization in ["mxfp4", "mxfp8"] and is_sm100_supported()
|
||||||
|
):
|
||||||
logger.warning(
|
logger.warning(
|
||||||
"%s quantization is not fully "
|
"%s quantization is not fully "
|
||||||
"optimized yet. The speed can be slower than "
|
"optimized yet. The speed can be slower than "
|
||||||
|
|||||||
Reference in New Issue
Block a user