Skip to content

Commit

Permalink
Made tensorflow IsNan actually work
Browse files Browse the repository at this point in the history
IsNan was added to tensorflow.rst in fa1b859 but this commit makes IsNan actually work
  • Loading branch information
jchia committed Jan 21, 2021
1 parent 20e03bc commit 2132e80
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/tvm/relay/frontend/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2357,6 +2357,7 @@ def _impl(inputs, attr, params, mod):
"Identity": _identity(),
"IsFinite": AttrCvt("isfinite"),
"IsInf": AttrCvt("isinf"),
"IsNan": AttrCvt("isnan"),
"LeakyRelu": AttrCvt("leaky_relu"),
"LeftShift": AttrCvt("left_shift"),
"Less": _broadcast("less"),
Expand Down

0 comments on commit 2132e80

Please sign in to comment.