We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e305c commit e29a4f1Copy full SHA for e29a4f1
tests/llmcompressor/transformers/compression/test_compress_tensor_utils.py
@@ -240,12 +240,11 @@ def _quantization_config_from_string(config_str, q_type):
240
@pytest.mark.parametrize(
241
"quant_style,quant_type,expected_format",
242
[
243
- ("W8A8", "int", False, "int-quantized"),
244
- ("W4A16", "int", False, "pack-quantized"),
245
- ("W8A16", "int", False, "pack-quantized"),
246
- ("W8A8", "float", False, "float-quantized"),
247
- ("W8A16", "float", False, "naive-quantized"),
248
- ("W8A16", "float", True, "naive-quantized"),
+ ("W8A8", "int", "int-quantized"),
+ ("W4A16", "int", "pack-quantized"),
+ ("W8A16", "int", "pack-quantized"),
+ ("W8A8", "float", "float-quantized"),
+ ("W8A16", "float", "naive-quantized"),
249
],
250
)
251
def test_correct_compressor_inferred(
0 commit comments