Skip to content

Commit

Permalink
Revert "#0: disable conv tests, suspected device state dependent bugs"
Browse files Browse the repository at this point in the history
This reverts commit 503f509.
  • Loading branch information
aliuTT committed May 29, 2024
1 parent 6f968d1 commit 22627b2
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/ttnn/unit_tests/operations/test_conv2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,6 @@ def test_resnet50_conv_gs(
pad_w,
use_1d_systolic_array,
):
pytest.skip("Skipping, suspecting some device state dependency")
if batch_size > 8 and (activations_dtype != ttnn.bfloat8_b or weights_dtype != ttnn.bfloat8_b):
pytest.skip("Batch > 8 must be run fully bfp8")

Expand Down Expand Up @@ -486,7 +485,6 @@ def test_resnet50_conv_wh(
config_override,
packer_l1_acc,
):
pytest.skip("Skipping, suspecting some device state dependency")
if device.core_grid.y == 7:
pytest.skip("Issue #6992: Statically allocated circular buffers in program clash with L1 buffers on core range")
if batch_size > 8 and (activations_dtype != ttnn.bfloat8_b or weights_dtype != ttnn.bfloat8_b):
Expand Down Expand Up @@ -610,7 +608,6 @@ def test_resnet50_conv_wh_fp32(
config_override,
packer_l1_acc,
):
pytest.skip("Skipping, suspecting some device state dependency")
if device.core_grid.y > 7:
pytest.skip("Not tested for N150 yet")

Expand Down Expand Up @@ -741,7 +738,6 @@ def test_sd_conv(
config_override,
enable_auto_formatting,
):
pytest.skip("Skipping, suspecting some device state dependency")
if filter_height > 1 and (input_channels > 1280 or (input_channels > 640 and input_height > 16)):
if enable_auto_formatting:
pytest.skip("Not running split SD conv with auto formatting")
Expand Down Expand Up @@ -884,7 +880,6 @@ def test_sd_conv_wh(
config_override,
enable_auto_formatting,
):
pytest.skip("Skipping, suspecting some device state dependency")
if device.core_grid.y == 7:
pytest.skip("This test is not supported for N300")

Expand Down Expand Up @@ -1126,7 +1121,6 @@ def test_unet_conv_wh(
use_shallow_conv_variant,
output_layout,
):
pytest.skip("Skipping, suspecting some device state dependency")
if (device.compute_with_storage_grid_size().x, device.compute_with_storage_grid_size().y) == (8, 7):
pytest.skip("Test is not supported on n300 (8,7) grid")
if output_layout == ttnn.ROW_MAJOR_LAYOUT and activations_dtype == ttnn.bfloat8_b:
Expand Down Expand Up @@ -1189,7 +1183,6 @@ def test_halo_reshard_conv(
pad_w,
config_override,
):
pytest.skip("Skipping, suspecting some device state dependency")
if is_wormhole_b0() and device.core_grid.y > 7:
pytest.skip("Not tested for N150 yet")

Expand Down Expand Up @@ -1248,7 +1241,6 @@ def test_conv_core_nondivis(
config_override,
xfail,
):
pytest.skip("Skipping, suspecting some device state dependency")
if xfail:
pytest.xfail()

Expand Down

0 comments on commit 22627b2

Please sign in to comment.