Skip to content
Merged
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
10 changes: 1 addition & 9 deletions backends/arm/test/ops/test_conv_combos.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,16 +430,8 @@ def test_convolution_2d_tosa_MI_avgpool2d(test_data: torch.Tensor):
pipeline.run()


x_fails = {
"combo_conv_avgpool_20_x_4d": "AssertionError: Output 0 does not match reference output.",
"combo_conv_avgpool_4d": "AssertionError: Output 0 does not match reference output.",
"combo_conv_avgpool_5_x_4d_randn": "AssertionError: Output 0 does not match reference output.",
"combo_conv_avgpool_2_x_4d": "AssertionError: Output 0 does not match reference output.",
}


@pytest.mark.flaky(reruns=5) # TODO: Investigate flakyness (MLTORCH-307)
@common.parametrize("test_data", ComboConvAvgPool2d.test_data, x_fails)
@common.parametrize("test_data", ComboConvAvgPool2d.test_data)
def test_convolution_2d_tosa_BI_avgpool2d(test_data: torch.Tensor):
model = ComboConvAvgPool2d()
pipeline = TosaPipelineBI[input_t1](
Expand Down
2 changes: 1 addition & 1 deletion backends/arm/test/tester/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def __init__(
custom_path: str = None,
atol: float = 1e-03,
rtol: float = 1e-03,
qtol: int = 0,
qtol: int = 1,
):
tosa_profiles = {
"0.80": TosaSpecification.create_from_string("TOSA-0.80+BI"),
Expand Down
Loading