@@ -33,19 +33,22 @@ class TestSpecDBOperationsMPS(BaseSpecDBTest):
33
33
# not implemented
34
34
"_pdist_forward.default" ,
35
35
# impl: clamp tensor number of dims must not be greater than that of input tensor
36
+ # https://github.com/pytorch/pytorch/issues/160734
36
37
"clamp.Tensor" ,
37
38
# crash: https://github.com/pytorch/pytorch/issues/154881
38
39
"cumsum.default" ,
39
40
# sparse_grad not supported in MPS yet
40
41
"gather.default" ,
41
42
# Dimension specified as -1 but tensor has no dimensions
43
+ # https://github.com/pytorch/pytorch/issues/160737
42
44
"index_select.default" ,
43
45
# crash: https://github.com/pytorch/pytorch/issues/154882
44
46
"max_pool2d_with_indices.default" ,
45
47
# On-going issue on MPSGraph topk when ndims() - axis > 4, see issue #154890
46
48
# https://github.com/pytorch/pytorch/issues/154890
47
49
"topk.default" ,
48
50
# var_mps: reduction dim must be in the range of input shape
51
+ # https://github.com/pytorch/pytorch/issues/160738
49
52
"var.correction" ,
50
53
"var.dim" ,
51
54
]
@@ -59,6 +62,7 @@ def test_all_ops_mps(self):
59
62
def test_all_ops_mps_half (self ):
60
63
skip_ops = self .SKIP_OPS .copy ()
61
64
# ConvTranspose 3D with BF16 or FP16 types is not supported on MPS
65
+ # https://github.com/pytorch/pytorch/issues/160739
62
66
skip_ops += ["convolution.default" ]
63
67
64
68
config = TensorConfig (
@@ -70,6 +74,7 @@ def test_all_ops_mps_transposed(self):
70
74
skip_ops = self .SKIP_OPS .copy ()
71
75
# argmax.default ['ArgType.Tensor torch.float32 (8, 8)', 'ArgType.DimOpt None', 'ArgType.Bool True']
72
76
# Exception occurred: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
77
+ # https://github.com/pytorch/pytorch/issues/160740
73
78
skip_ops += ["argmax.default" , "argmin.default" ]
74
79
75
80
config = TensorConfig (
0 commit comments