Skip to content

Commit 1727508

Browse files
committed
fix param name
1 parent 9254821 commit 1727508

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/forward.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def _process_quantization(
242242
if do_dequantize:
243243
input = output[:, start:end] if do_quantize else x[:, start:end]
244244
output[:, start:end] = _dequantize(
245-
x=input, scale=sc, zero_point=zp, global_scale=global_scale
245+
x_q=input, scale=sc, zero_point=zp, global_scale=global_scale
246246
)
247247

248248
if not is_column_order:

0 commit comments

Comments
 (0)