Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable ConvMnist and Mnist integration and performance tests. #16965

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion models/demos/convnet_mnist/tests/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ def test_convnet_mnist(
],
)
@pytest.mark.models_device_performance_bare_metal
@pytest.mark.skip("#16824: Failing when whole suite is run on all archs")
def test_perf_device_bare_metal_convnet_mnist(batch_size, expected_perf):
subdir = "ttnn_convnet_mnist"
num_iterations = 1
Expand Down
1 change: 0 additions & 1 deletion models/demos/mnist/tests/test_perf_mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ def test_performance_mnist(device, batch_size, tt_mnist, model_location_generato
logger.info("Exit MNIST perf test")


@pytest.mark.skip("#16824: Failing when whole suite is run on all archs")
@pytest.mark.parametrize(
"batch_size",
[128],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def model_location_generator(rel_path):
return Path("/opt/tt-metal-models") / rel_path


@pytest.mark.skip("#16824: Failing when whole suite is run on all archs")
@pytest.mark.parametrize("device_params", [{"l1_small_size": 16384}], indirect=True)
def test_convnet_mnist(device, reset_seeds):
model_path = model_location_generator("tt_dnn-models/ConvNetMNIST/")
Expand Down
1 change: 0 additions & 1 deletion tests/ttnn/integration_tests/mnist/test_mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from models.demos.mnist.tt import tt_mnist


@pytest.mark.skip("#16824: Failing when whole suite is run on all archs")
@pytest.mark.parametrize("device_params", [{"l1_small_size": 32768}], indirect=True)
@pytest.mark.parametrize(
"batch_size",
Expand Down
Loading