We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 233e514 commit bea0d69Copy full SHA for bea0d69
1 file changed
test/lazy/test_debug_util.py
@@ -4,14 +4,16 @@
4
import re
5
import tempfile
6
import torch.nn as nn
7
+import unittest
8
9
import torch._lazy
10
import torch._lazy.ts_backend
-from torch.testing._internal.common_utils import run_tests, TestCase
11
+from torch.testing._internal.common_utils import IS_WINDOWS, run_tests, TestCase
12
13
torch._lazy.ts_backend.init()
14
15
16
+@unittest.skipIf(IS_WINDOWS, "To be fixed")
17
class DebugUtilTest(TestCase):
18
def _run_linear(self):
19
device = "lazy"
0 commit comments