Skip test_fork_wait_4 and test_fork_wait_4_async (#112743)

Fixes #109782

Pull Request resolved: https://github.com/pytorch/pytorch/pull/112743
Approved by: https://github.com/jbschlosser
This commit is contained in:
Aleksei Nikiforov
2023-11-02 20:46:24 +00:00
committed by PyTorch MergeBot
parent 157bda1bf0
commit d9ad7ac390

View File

@ -297,6 +297,7 @@ class TestStaticModule(TestCase):
Test Case: To test fork/wait operation in a graph on
multiple nested fork/wait operations
"""
@unittest.skip("Broken test: https://github.com/pytorch/pytorch/issues/109782")
def test_fork_wait_4(self):
input = torch.ones(3, 3)
num_forks = 10
@ -311,6 +312,7 @@ class TestStaticModule(TestCase):
Test Case: To test fork/wait operation in a graph with multiple
nested fork/wait operations on runAsync API returning future
"""
@unittest.skip("Broken test: https://github.com/pytorch/pytorch/issues/109782")
def test_fork_wait_4_async(self):
input = torch.ones(3, 3)
num_forks = 10