Remove @skipIfTorchDynamo from test_extremal_numerics_l1_loss_cpu test (#139318)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/139318
Approved by: https://github.com/zou3519, https://github.com/williamwen42
This commit is contained in:
Guilherme Leobas
2024-10-30 18:45:43 -03:00
committed by PyTorch MergeBot
parent 886579af99
commit 1518cf426b
2 changed files with 0 additions and 2 deletions

View File

@ -52,7 +52,6 @@ from torch.testing._internal.common_utils import (
run_tests,
runOnRocm,
skipIfRocm,
skipIfTorchDynamo,
TEST_WITH_ASAN,
TEST_WITH_ROCM,
TestCase,
@ -2168,7 +2167,6 @@ class TestOperators(TestCase):
cotangents = torch.randn_like(result, device=device)
self._compare_jacobians_of_vjp(fn, (cotangents, input))
@skipIfTorchDynamo("segfaults")
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))