Skip to content

Commit 30ad305

Browse files
committed
fix tests
1 parent b29792f commit 30ad305

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_quantization/test_utils/test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def test_fused_global_scales():
8383
"shape,group_size,exp_shape",
8484
[
8585
# Only batch size =1 is supported for dynamic GROUP quantization
86-
((1, 4, 8), 4, torch.Size([4, 2])),
86+
((1, 4, 8), 4, torch.Size([1, 4, 2])),
8787
],
8888
)
8989
def test_compute_dynamic_scales_and_zp_group(shape, group_size, exp_shape):

0 commit comments

Comments
 (0)