Skip to content

Commit

Permalink
relax
Browse files Browse the repository at this point in the history
Signed-off-by: Masaki Kozuki <mkozuki@nvidia.com>
  • Loading branch information
crcrpar committed Jun 13, 2024
1 parent a1704f3 commit fe589dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion thunder/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2121,7 +2121,8 @@ def test_xor(s, o):

for t in tests:
cfn = thunder.jit(t)
with pytest.raises(RuntimeError, match="not supported"):
# Some ops of `tests` already have in-place supported, leading to broadcast error
with pytest.raises(RuntimeError, match="not supported|Attempting"):
cfn(t1, t2)
# Note: Python maps inplace operations on (immutuables) to
# out of place operations, NumberProxy does this, too.
Expand Down

0 comments on commit fe589dc

Please sign in to comment.