Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/llmcompressor/modifiers/awq/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ def _compute_layer_means(layers: list[Module]) -> torch.Tensor:
f" layer {type(layer)}, skipping"
)
continue
weight = layer.weight
weight = layer.weight.clone()
orig_shape = weight.shape

q_args = getattr_chain(layer, "quantization_scheme.weights", None)
Expand Down
Loading