skip test_jit_legacy (#68129)

Summary:
disables failing tests in [https://github.com/pytorch/pytorch/issues/66429](https://github.com/pytorch/pytorch/issues/67646)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/68129

Reviewed By: suo, janeyx99

Differential Revision: D32326118

Pulled By: Krovatkin

fbshipit-source-id: ca00d2214503f418be45dc756057b990fb6e6370
This commit is contained in:
Nikolay Korovaiko
2021-11-10 23:06:49 -08:00
committed by Facebook GitHub Bot
parent a6a2616558
commit aea4e61ec3

View File

@ -8,6 +8,7 @@ import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.testing import FileCheck
from unittest import skipIf
from torch.testing._internal.common_utils import run_tests, IS_SANDCASTLE, ProfilingMode, GRAPH_EXECUTOR, \
enable_profiling_mode_for_profiling_tests, IS_WINDOWS, TemporaryDirectoryName, shell
@ -38,6 +39,7 @@ def warmup_forward(f, *args):
return results
@skipIf(GRAPH_EXECUTOR == ProfilingMode.LEGACY, "skip due to SIGIOT failures, #67646")
class TestFuser(JitTestCase):
def assertAllFused(self, graph, except_for=()):