Skip to content

Commit 7cd9b09

Browse files
gushiqiaogushiqiao
andauthored
Fix sglang bugs (#220)
Co-authored-by: gushiqiao <[email protected]>
1 parent f4fb949 commit 7cd9b09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llmc/compression/quantization/module_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,8 +1205,8 @@ def __repr__(self):
12051205

12061206

12071207
class SglRealQuantLinear(VllmRealQuantLinear):
1208-
def __init__(self, weight, bias, scales, need_pack):
1209-
super().__init__(weight, bias, scales, need_pack)
1208+
def __init__(self, weight, bias, scales, input_scale, need_pack):
1209+
super().__init__(weight, bias, scales, input_scale, need_pack)
12101210

12111211
def __repr__(self):
12121212
return (

0 commit comments

Comments
 (0)