From 9dcdf5da0333b3592cccf0285ad092f9eaf5abfe Mon Sep 17 00:00:00 2001 From: fzyzcjy <5236035+fzyzcjy@users.noreply.github.com> Date: Mon, 25 Aug 2025 18:08:10 +0800 Subject: [PATCH] Tiny fix wrong comments (#9589) --- python/sglang/srt/layers/quantization/modelopt_quant.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/sglang/srt/layers/quantization/modelopt_quant.py b/python/sglang/srt/layers/quantization/modelopt_quant.py index 9d7307c16..aff18fa2b 100755 --- a/python/sglang/srt/layers/quantization/modelopt_quant.py +++ b/python/sglang/srt/layers/quantization/modelopt_quant.py @@ -876,7 +876,6 @@ class ModelOptNvFp4FusedMoEMethod(FusedMoEMethodBase): data=torch.empty( layer.num_local_experts, 2 * intermediate_size_per_partition, - # 2 fp4 items are packed in the input dimension hidden_size // self.quant_config.group_size, dtype=weight_scale_dtype, ), @@ -895,7 +894,6 @@ class ModelOptNvFp4FusedMoEMethod(FusedMoEMethodBase): data=torch.empty( layer.num_local_experts, hidden_size, - # 2 fp4 items are packed in the input dimension intermediate_size_per_partition // self.quant_config.group_size, dtype=weight_scale_dtype, ),