We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a938963 commit 4d1c1ffCopy full SHA for 4d1c1ff
1 file changed
modelopt/torch/quantization/mode.py
@@ -229,6 +229,9 @@ def wrapped_calib_func(
229
230
if func is not None:
231
if sequential:
232
+ assert method in ["max"], (
233
+ f"Sequential calibration currently only supports max calibration, got {method}"
234
+ )
235
# Wrap with sequential processing
236
sequential_calibrate(
237
model,
0 commit comments