Skip to content

Commit

Permalink
Fix xfails
Browse files Browse the repository at this point in the history
  • Loading branch information
qqaatw committed Feb 28, 2023
1 parent 4155ac2 commit 1a8f4ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_mps.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,12 @@ def mps_ops_modifier(ops):
'masked.softmin': [torch.float32],
'masked.log_softmax': [torch.float32],
'dot': [torch.int64],
'pow': [torch.uint8],
}
MACOS_12_X_XFAILLIST = {
'__radd__': [torch.uint8],
'__rdiv__': [torch.uint8],
'__rmul__': [torch.uint8],
'__rpow__': [torch.int16, torch.int32, torch.int64, torch.uint8],
'__rpow__': [torch.int16, torch.uint8],
'abs': [torch.uint8],
'acos': [torch.uint8],
'acosh': [torch.uint8],
Expand Down Expand Up @@ -134,6 +133,7 @@ def mps_ops_modifier(ops):

# Those ops are not expected to work
XFAILLIST = {
'__rpow__': [torch.int32, torch.int64],
'chalf': None,
# Unsupported dtypes
'dot': [torch.int64],
Expand Down

0 comments on commit 1a8f4ff

Please sign in to comment.