[inductor] calibration inductor windows uts (5/N) (#134402)

skip UTs of `test/dynamo/test_repros.py`

Pull Request resolved: https://github.com/pytorch/pytorch/pull/134402
Approved by: https://github.com/ezyang
This commit is contained in:
Xu Han
2024-08-24 23:00:11 +00:00
committed by PyTorch MergeBot
parent 94f92fbd88
commit af4c87953e

View File

@ -44,6 +44,7 @@ from torch.testing._internal.common_utils import (
disable_translation_validation_if_dynamic_shapes,
instantiate_parametrized_tests,
parametrize,
skipIfWindows,
TEST_WITH_ROCM,
)
from torch.testing._internal.two_tensor import TwoTensor
@ -1925,6 +1926,9 @@ class ReproTests(torch._dynamo.test_case.TestCase):
y = torch.randn(10)
self.assertTrue(same(b(y), y.sin().cos()))
@skipIfWindows(
msg="torch._dynamo.exc.TorchRuntimeError: Failed running call_function <class 'torch.LongTensor'>(*(FakeTensor(..., size=(10,), dtype=torch.int32),), **{}):" # noqa: B950
)
def test_longtensor_list(self):
for partition in [0, 5, 10]: