We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6884ee9 commit 311a6f4Copy full SHA for 311a6f4
tests/zero_code_change/test_pytorch_integration.py
@@ -12,6 +12,7 @@
12
13
# Third Party
14
import pytest
15
+import torch
16
import torch.nn as nn
17
import torch.nn.functional as F
18
import torch.optim as optim
@@ -22,6 +23,10 @@
22
23
from smdebug.core.utils import SagemakerSimulator, ScriptSimulator
24
25
26
+@pytest.mark.skipif(
27
+ torch.__version__ == "1.7.0",
28
+ reason="Disabling the test temporarily until we root cause the version incompatibility",
29
+)
30
@pytest.mark.parametrize("script_mode", [False])
31
@pytest.mark.parametrize("use_loss_module", [True, False])
32
def test_pytorch(script_mode, use_loss_module):
0 commit comments