Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions devtools/inspector/tests/inspector_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import os
import random
import statistics
import sys
import tempfile
import unittest
from contextlib import redirect_stdout
Expand Down Expand Up @@ -838,6 +839,7 @@ def _gen_random_runtime_output(
) -> List[Union[None, List[torch.Tensor], bool, float, int, str, torch.Tensor]]:
return [torch.randn(RAW_DATA_SIZE)]

@unittest.skipIf(sys.platform.startswith("win"), "Skipping on Windows")
def test_disable_debug_handle_validation_with_symbolic_shapes(self):
"""
Test that demonstrates the issue with symbolic shape related nodes losing from_node info
Expand Down
Loading