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
4 changes: 3 additions & 1 deletion test/test_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,9 @@ def test_empty_advanced_indexing(self):
xla_result = xla_base[:, torch.empty(0, 6, dtype=torch.int64)]
self.assertEqual(result, xla_result)

@unittest.skip("Produce wrong results on grad_input")
@unittest.skip(
"grad_input produces wrong results after functionalization. pytorch/pytorch#91199"
)
def test_empty_strided(self):
xla_device = xm.xla_device()
m = nn.Conv1d(4, 6, kernel_size=3, groups=2)
Expand Down