Skip to content

Commit

Permalink
fix: Fixed ivy.remainder() function call which contains wrong argum…
Browse files Browse the repository at this point in the history
…ent (#28045)
  • Loading branch information
Sai-Suraj-27 committed Jan 25, 2024
1 parent bec4752 commit bccc590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ivy/functional/frontends/tensorflow/variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def __mul__(self, x, name="mul"):
return tf_frontend.math.multiply(x, self._ivy_array, name=name)

def __mod__(self, x, name="mod"):
return ivy.remainder(x, self._ivy_array, name=name)
return tf_frontend.math.mod(x, self._ivy_array, name=name)

def __ne__(self, other):
return tf_frontend.raw_ops.NotEqual(
Expand Down

0 comments on commit bccc590

Please sign in to comment.