From 81123f54668e65e2279088b52e841041d756e108 Mon Sep 17 00:00:00 2001 From: Shunting Zhang Date: Tue, 21 May 2024 13:33:53 -0700 Subject: [PATCH] Update base for Update on "Revert "Skip test_memory_format_nn_BatchNorm2d in inductor (#125970)"" This reverts commit 0a9c6e92f8d1a35f33042c8dab39f23b7f39d6e7. enable the test since it's fixed. [ghstack-poisoned] --- test/functorch/test_ops.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/functorch/test_ops.py b/test/functorch/test_ops.py index 068123a78e8c..21751ee220df 100644 --- a/test/functorch/test_ops.py +++ b/test/functorch/test_ops.py @@ -2130,6 +2130,10 @@ def test_extremal_numerics_nll_loss(self, device): cotangents = torch.randn_like(result, device=device) self._compare_jacobians_of_vjp(fn, (cotangents, input)) + @unittest.skip( + "The test fails in CI but does not repro on dev machines. " + "Check https://github.com/pytorch/pytorch/pull/126586 for more details" + ) def test_extremal_numerics_l1_loss(self, device): N, C, H, W = 3, 4, 5, 6 shapes = ((N, C), (N, C, H), (N, C, H, W))