From d9c85a0acc3a3f642f235efbfece402d1f297e7c Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Tue, 17 Jun 2025 12:57:36 -0700 Subject: [PATCH] skip et quantizer numeric debugging tests for infra update Differential Revision: D76842266 --- backends/xnnpack/test/quantizer/test_pt2e_quantization.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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] = {}