Skip to content

Commit

Permalink
fix: restore torch frontend tensor ne method (#22840)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliagsy authored Aug 31, 2023
1 parent dc8ccbc commit 287a887
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ivy/functional/frontends/torch/tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,8 @@ def floor(self, *, out=None):
def not_equal(self, other, *, out=None):
return torch_frontend.not_equal(self, other, out=out)

ne = not_equal

def equal(self, other):
return torch_frontend.equal(self, other)

Expand Down

0 comments on commit 287a887

Please sign in to comment.