diff --git a/backends/xnnpack/test/quantizer/test_pt2e_quantization.py b/backends/xnnpack/test/quantizer/test_pt2e_quantization.py index 5053458613e..a38d6534ca7 100644 --- a/backends/xnnpack/test/quantizer/test_pt2e_quantization.py +++ b/backends/xnnpack/test/quantizer/test_pt2e_quantization.py @@ -6,6 +6,8 @@ # pyre-unsafe +import unittest + from collections import Counter from typing import Dict, Tuple @@ -722,7 +724,7 @@ def test_save_load(self) -> None: instantiate_parametrized_tests(TestQuantizePT2E) - +@unittest.skip("TODO: Reenable it after debug infrature finish update") class TestNumericDebugger(TestCase): def _extract_debug_handles(self, model) -> Dict[str, int]: debug_handle_map: Dict[str, int] = {}