Skip to content

Commit

Permalink
#0: disable complex pytests
Browse files Browse the repository at this point in the history
  • Loading branch information
TT-billteng committed Nov 30, 2023
1 parent 8387301 commit d2db6c1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,7 @@ def test_level2_sub(bs, memcfg, dtype, device, function_level_defaults):
)
@pytest.mark.parametrize("dtype", ((ttl.tensor.DataType.BFLOAT16,)))
@pytest.mark.parametrize("bs", ((1, 1), (1, 2), (2, 2)))
@skip_for_wormhole_b0("Watcher error, see issue#4083")
def test_level2_mul(bs, memcfg, dtype, device, function_level_defaults):
input_shape = torch.Size([bs[0], bs[1], 32, 64])
# check add
Expand Down Expand Up @@ -735,6 +736,7 @@ def test_level2_mul(bs, memcfg, dtype, device, function_level_defaults):
)
@pytest.mark.parametrize("dtype", ((ttl.tensor.DataType.BFLOAT16,)))
@pytest.mark.parametrize("bs", ((1, 1), (1, 2), (2, 2)))
@skip_for_wormhole_b0("Watcher error, see issue#4083")
def test_level2_div(bs, memcfg, dtype, device, function_level_defaults):
input_shape = torch.Size([bs[0], bs[1], 32, 64])
# check add
Expand Down Expand Up @@ -772,6 +774,7 @@ def test_level2_div(bs, memcfg, dtype, device, function_level_defaults):
)
@pytest.mark.parametrize("dtype", ((ttl.tensor.DataType.BFLOAT16,)))
@pytest.mark.parametrize("bs", ((1, 1), (1, 2), (2, 2)))
@skip_for_wormhole_b0("Watcher error, see issue#4083")
def test_level2_is_real(bs, memcfg, dtype, device, function_level_defaults):
input_shape = torch.Size([bs[0], bs[1], 32, 64])
# check abs
Expand Down Expand Up @@ -802,6 +805,7 @@ def test_level2_is_real(bs, memcfg, dtype, device, function_level_defaults):
)
@pytest.mark.parametrize("dtype", ((ttl.tensor.DataType.BFLOAT16,)))
@pytest.mark.parametrize("bs", ((1, 1), (1, 2), (2, 2)))
@skip_for_wormhole_b0("Watcher error, see issue#4083")
def test_level2_is_imag(bs, memcfg, dtype, device, function_level_defaults):
input_shape = torch.Size([bs[0], bs[1], 32, 64])
# check abs
Expand Down

0 comments on commit d2db6c1

Please sign in to comment.