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

from typing import Tuple

import conftest

import torch

from executorch.backends.arm.test import common
Expand Down Expand Up @@ -119,6 +121,7 @@ def test_avg_pool2d_tosa_MI(test_module):
input_tensor,
aten_op,
exir_op,
run_on_tosa_ref_model=conftest.is_option_enabled("tosa_ref_model"),
)
pipeline.run()

Expand All @@ -132,6 +135,7 @@ def test_avg_pool2d_tosa_BI(test_module):
input_tensor,
aten_op,
exir_op,
run_on_tosa_ref_model=conftest.is_option_enabled("tosa_ref_model"),
)
pipeline.run()

Expand Down
Loading