Skip to content

Commit

Permalink
Change newly added atan
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthesun committed Mar 20, 2020
1 parent 48dd312 commit f987edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tvm/relay/frontend/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1604,8 +1604,8 @@ def _impl(inputs, attr, params, mod):
return _impl

def _atan2():
def _impl(inputs, attr, params):
divide = _elemwise("divide")(inputs, attr, params)
def _impl(inputs, attr, params, mod):
divide = _elemwise("divide")(inputs, attr, params, mod)
return get_relay_op("atan")(divide)
return _impl

Expand Down

0 comments on commit f987edd

Please sign in to comment.