Skip to content

Commit

Permalink
#15833: Skip tests in case of 1x1 MeshDevice due to infra issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-aho committed Dec 9, 2024
1 parent 1526c1f commit 2a31ac7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/ttnn/unit_tests/test_sub_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ def test_sub_devices(device, enable_async_mode):
@pytest.mark.parametrize("enable_async_mode", (False, True), indirect=True)
@pytest.mark.parametrize("replicate_sub_devices", (False, True))
def test_sub_devices_mesh(mesh_device, replicate_sub_devices, enable_async_mode):
if mesh_device.get_num_devices() == 1:
pytest.skip("#15833: Skipping test for single device mesh")
run_sub_devices(mesh_device, replicate_sub_devices)


Expand All @@ -153,4 +155,6 @@ def test_sub_device_program(device, enable_async_mode):
@pytest.mark.parametrize("enable_async_mode", (False, True), indirect=True)
@pytest.mark.parametrize("replicate_sub_devices", (False, True))
def test_sub_device_program_mesh(mesh_device, replicate_sub_devices, enable_async_mode):
if mesh_device.get_num_devices() == 1:
pytest.skip("#15833: Skipping test for single device mesh")
run_sub_devices_program(mesh_device, replicate_sub_devices)

0 comments on commit 2a31ac7

Please sign in to comment.