commit | c95bcb669492805bd5cb73f40958ccafbfc096a3 | [log] [tgz] |
---|---|---|
author | Li-Huai (Allan) Lin <[email protected]> | Tue Mar 14 00:34:26 2023 +0000 |
committer | PyTorch MergeBot <[email protected]> | Tue Mar 14 00:34:30 2023 +0000 |
tree | b7cf33c0af30393466b3b74cc57a36d6f836220c | |
parent | ca7e53324f65cf2346042afb104a60f45e784bed [diff] [blame] |
[MPS] Fix flip where no dims need to be flipped (#96605) Fixes #96558 Pull Request resolved: https://github.com/pytorch/pytorch/pull/96605 Approved by: https://github.com/kulinseth
diff --git a/test/test_mps.py b/test/test_mps.py index 66124e9..351aa76 100644 --- a/test/test_mps.py +++ b/test/test_mps.py
@@ -6475,6 +6475,8 @@ helper((1,), (0,)) # input.numel() == 0 helper((0,), (0,)) + # none of dims that needs to be flipped + helper((1, 3), [0]) # Test index select def test_index_select(self):