Skip to content

Commit

Permalink
remove g_idx arg (vllm-project#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylesayrs authored Aug 22, 2024
1 parent 17aa177 commit fe62831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compressed_tensors/quantization/lifecycle/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def update_layer_weight_quant_params(
if attached_weight is not None:
weight = weight.to(attached_weight.dtype)

updated_scale, updated_zero_point = observer(weight, g_idx=g_idx)
updated_scale, updated_zero_point = observer(weight)

# update scale and zero point
device = next(layer.parameters()).device
Expand Down

0 comments on commit fe62831

Please sign in to comment.