Skip to content

Commit

Permalink
quick fix (#160)
Browse files Browse the repository at this point in the history
Co-authored-by: Yang Wang <[email protected]>
  • Loading branch information
wejoncy and YangWang92 authored Jan 13, 2025
1 parent 85d5e8e commit 845ff8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vptq/utils/pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def absorb_perm_layer(layer):
def absorb_perm(model):
absorbed_perm = False
# Process all VQuantLinear layers
pbar = tqdm(model.named_modules())
pbar = tqdm.tqdm(model.named_modules())

for name, module in pbar:
if isinstance(module, vptq.layers.vqlinear.VQuantLinear):
Expand Down

0 comments on commit 845ff8c

Please sign in to comment.