Skip to content

Commit

Permalink
Fix sglang bugs (#220)
Browse files Browse the repository at this point in the history
Co-authored-by: gushiqiao <[email protected]>
  • Loading branch information
gushiqiao and gushiqiao authored Nov 22, 2024
1 parent f4fb949 commit 7cd9b09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llmc/compression/quantization/module_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1205,8 +1205,8 @@ def __repr__(self):


class SglRealQuantLinear(VllmRealQuantLinear):
def __init__(self, weight, bias, scales, need_pack):
super().__init__(weight, bias, scales, need_pack)
def __init__(self, weight, bias, scales, input_scale, need_pack):
super().__init__(weight, bias, scales, input_scale, need_pack)

def __repr__(self):
return (
Expand Down

0 comments on commit 7cd9b09

Please sign in to comment.