Skip to content

Commit a96cd65

Browse files
Update test
1 parent 73b5e7a commit a96cd65

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/test_parametrize.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ def __init__(self, device="cpu", dtype=torch.float32):
3737
@pytest.mark.parametrize("dtype", [torch.float32, torch.float16, torch.bfloat16], ids=describe_dtype)
3838
@pytest.mark.parametrize("quant_type", ["nf4", "fp4"])
3939
@pytest.mark.parametrize("compress_statistics", TRUE_FALSE, ids=id_formatter("compress_statistics"))
40-
@pytest.mark.parametrize(
41-
"blocksize",
42-
[64, 128, 256] if not ROCM_WARP_SIZE_64 else [128, 256],
43-
)
40+
@pytest.mark.parametrize("blocksize", [64, 128, 256])
4441
def test_replace_parameter_4bit(device, dtype, quant_type, compress_statistics, blocksize):
4542
"""Test basic parameter replacement with 4-bit quantization on different dtypes."""
4643
if device == "hpu" and not is_supported_on_hpu(quant_type, dtype):

0 commit comments

Comments
 (0)