Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe5 committed Mar 9, 2025
1 parent 39cbb45 commit c690dd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/brevitas/proxy/test_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

@pytest_cases.parametrize('weight_quantizer', WEIGHT_QUANTIZERS.items())
@given(weight=float_tensor_st(shape=(8, 16)))
@requires_pt_ge('2.0')
@requires_pt_ge('2.3.1')
def test_compile_weight(weight, weight_quantizer):
name, quant = weight_quantizer
inp = torch.randn(8, 16)
Expand All @@ -53,7 +53,7 @@ def test_compile_weight(weight, weight_quantizer):

@pytest_cases.parametrize('act_quantizer', ACT_QUANTIZERS.items())
@given(inp=float_tensor_st(shape=(8, 16)))
@requires_pt_ge('2.0')
@requires_pt_ge('2.3.1')
def test_compile_act(inp, act_quantizer):
name, quant = act_quantizer
if 'mx' in name:
Expand Down

0 comments on commit c690dd5

Please sign in to comment.