Skip to content

Commit aa3350d

Browse files
committed
skip if no support
1 parent 6a303fa commit aa3350d

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

test/test_out_dtype_op.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Owner(s): ["module: functorch"]
2+
import unittest
3+
24
import torch
35
import torch._dynamo
46
import torch._export
@@ -8,6 +10,7 @@
810
from torch.testing import FileCheck
911

1012

13+
@unittest.skipIf(not torch._dynamo.is_dynamo_supported(), "dynamo isn't support")
1114
class TestOutDtypeOp(TestCase):
1215
def test_out_dtype_make_fx(self):
1316
class M(torch.nn.Module):

third_party/cutlass

Submodule cutlass updated 71 files

third_party/pybind11

Submodule pybind11 updated 78 files

0 commit comments

Comments
 (0)