Skip to content

Commit 9c3e912

Browse files
committed
Disable flaky test TestQuantLoweringCustomBackendPass
ghstack-source-id: 95facb1 Pull Request resolved: #2465
1 parent b830021 commit 9c3e912

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

exir/tests/test_quant_lowering_custom_backend_pass.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
from torch.fx import subgraph_rewriter
6666
from torch.fx.passes.infra.pass_base import PassResult
6767
from torch.testing import FileCheck
68+
from torch.testing._internal.common_utils import IS_LINUX
6869

6970

7071
# pyre-ignore
@@ -506,6 +507,9 @@ class TestQuantLoweringCustomBackendPass(unittest.TestCase):
506507
def setUp(self) -> None:
507508
super().setUp()
508509

510+
@unittest.skipIf(
511+
IS_LINUX, "Flaky test on Linux x86, needs debugging. Issue is tracked in #2468"
512+
)
509513
@torch.inference_mode() # TODO Use for capturing.
510514
def test(self) -> None:
511515
mod = TestModel(

0 commit comments

Comments
 (0)