Skip to content

Commit e29a4f1

Browse files
committed
fix typo
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com>
1 parent 33e305c commit e29a4f1

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

tests/llmcompressor/transformers/compression/test_compress_tensor_utils.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -240,12 +240,11 @@ def _quantization_config_from_string(config_str, q_type):
240240
@pytest.mark.parametrize(
241241
"quant_style,quant_type,expected_format",
242242
[
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"),
243+
("W8A8", "int", "int-quantized"),
244+
("W4A16", "int", "pack-quantized"),
245+
("W8A16", "int", "pack-quantized"),
246+
("W8A8", "float", "float-quantized"),
247+
("W8A16", "float", "naive-quantized"),
249248
],
250249
)
251250
def test_correct_compressor_inferred(

0 commit comments

Comments
 (0)