Skip to content

Commit fe62831

Browse files
authored
remove g_idx arg (vllm-project#139)
1 parent 17aa177 commit fe62831

File tree

1 file changed

+1
-1
lines changed
  • src/compressed_tensors/quantization/lifecycle

1 file changed

+1
-1
lines changed

src/compressed_tensors/quantization/lifecycle/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def update_layer_weight_quant_params(
6464
if attached_weight is not None:
6565
weight = weight.to(attached_weight.dtype)
6666

67-
updated_scale, updated_zero_point = observer(weight, g_idx=g_idx)
67+
updated_scale, updated_zero_point = observer(weight)
6868

6969
# update scale and zero point
7070
device = next(layer.parameters()).device

0 commit comments

Comments
 (0)