Skip to content

Commit c7d3640

Browse files
committed
Merge branch 'gs/code-reorg' of https://github.com/onnx/tensorflow-onnx into gs/code-reorg
2 parents 3cc7a0c + 8ca173e commit c7d3640

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tf2onnx/onnx_opset/math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def version_7(cls, ctx, node, **kwargs):
4848
pass
4949

5050

51-
@tf_op(["Acosh", "Asinh", "Atanh", "Cosh"])
51+
@tf_op(["Acosh", "Asinh", "Atanh", "Cosh", "Sinh"])
5252
class TrigOpSinceOpset9:
5353
@classmethod
5454
def version_9(cls, ctx, node, **kwargs):

tf2onnx/onnx_opset/tensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ def version_4(cls, ctx, node, **kwargs):
787787
ctx.copy_shape(node.output[0], output_cast.output[0])
788788

789789

790-
@tf_op("IsNan")
790+
@tf_op("IsNan", type_map={"IsNan": "IsNaN"})
791791
class IsNan:
792792
@classmethod
793793
def version_9(cls, ctx, node, **kwargs):

0 commit comments

Comments
 (0)