Skip to content

Arm backend: Add pytest.mark.flaky on U85 tests in test_mm.py #9926

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

Merged
merged 1 commit into from
Apr 7, 2025
Merged
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
3 changes: 3 additions & 0 deletions backends/arm/test/ops/test_mm.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

from typing import Callable

import pytest
import torch
from executorch.backends.arm.test import common
from executorch.backends.arm.test.tester.test_pipeline import (
Expand Down Expand Up @@ -53,6 +54,7 @@ def test_mm_tosa_u55(test_data_generator: Callable[[], tuple]):


@parameterized.expand(MM.test_data_generators)
@pytest.mark.flaky # Investigate flakiness (MLETORCH-870)
def test_mm_tosa_u85(test_data_generator: Callable[[], tuple]):
test_data = test_data_generator()
EthosU85PipelineBI[test_t](MM(), test_data, MM.aten_op, MM.exir_op).run()
Expand All @@ -67,6 +69,7 @@ def test_mm_tosa_u55_on_fvp(test_data_generator: Callable[[], tuple]):

@parameterized.expand(MM.test_data_generators)
@common.SkipIfNoCorstone320
@pytest.mark.flaky # Investigate flakiness (MLETORCH-870)
def test_mm_tosa_u85_on_fvp(test_data_generator: Callable[[], tuple]):
test_data = test_data_generator()
EthosU85PipelineBI[test_t](
Expand Down
Loading