Skip to content

Commit 49cb5a6

Browse files
committed
Update on "Disable flaky test TestQuantLoweringCustomBackendPass"
Differential Revision: [D54966578](https://our.internmc.facebook.com/intern/diff/D54966578) [ghstack-poisoned]
1 parent 1efd230 commit 49cb5a6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

exir/tests/test_quant_lowering_custom_backend_pass.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,9 @@ class TestQuantLoweringCustomBackendPass(unittest.TestCase):
507507
def setUp(self) -> None:
508508
super().setUp()
509509

510-
@unittest.skipIf(IS_LINUX, "Flaky test on Linux x86, needs debugging")
510+
@unittest.skipIf(
511+
IS_LINUX, "Flaky test on Linux x86, needs debugging. Issue is tracked in #2468"
512+
)
511513
@torch.inference_mode() # TODO Use for capturing.
512514
def test(self) -> None:
513515
mod = TestModel(
@@ -977,7 +979,10 @@ def test_qat_linear(self) -> None:
977979
backend_config=get_executorch_backend_config(),
978980
)
979981
print("converted:", converted_mod)
980-
captured_mod = exir.capture(converted_mod, example_inputs,).to_edge(
982+
captured_mod = exir.capture(
983+
converted_mod,
984+
example_inputs,
985+
).to_edge(
981986
exir.EdgeCompileConfig(_check_ir_validity=False, _use_edge_ops=True)
982987
)
983988

0 commit comments

Comments
 (0)