We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f179a91 commit f3d0e58Copy full SHA for f3d0e58
src/compressed_tensors/quantization/quant_scheme.py
@@ -66,6 +66,17 @@ def validate_model_after(model: "QuantizationScheme") -> "QuantizationScheme":
66
QuantizationStrategy.GROUP,
67
QuantizationStrategy.TENSOR_GROUP,
68
):
69
+<<<<<<< HEAD
70
+=======
71
+ if (
72
+ inputs.strategy == QuantizationStrategy.GROUP
73
+ and inputs.dynamic is True
74
+ ):
75
+ raise NotImplementedError(
76
+ "Static and local group-wise quantization is not supported"
77
+ )
78
+
79
+>>>>>>> db46c84 (satisfy quality checker)
80
raise NotImplementedError(
81
f"Using {inputs.strategy} strategy is not supported for "
82
"activation quantization"
0 commit comments