Skip to content
Closed
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
4 changes: 4 additions & 0 deletions backends/arm/test/ops/test_depthwise_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

from typing import Tuple

import pytest

import torch
from executorch.backends.arm.test import common
from executorch.backends.arm.test.ops.test_conv import Conv2d
Expand Down Expand Up @@ -189,7 +191,9 @@ def _test_dw_conv2d_u55_BI_pipeline(
def test_dw_conv2d_tosa_MI(self, test_name, model):
self._test_dw_conv2d_tosa_MI_pipeline(model, model.get_inputs())

# TODO: Investigate flakyness (MLTORCH-307)
@parameterized.expand(testsuite)
@pytest.mark.flaky(reruns=3)
def test_dw_conv2d_tosa_BI(self, test_name, model):
self._test_dw_conv2d_tosa_BI_pipeline(model, model.get_inputs())

Expand Down