Skip to content

Commit

Permalink
Merge pull request #1099 from onnx/tom/MakeEinsumLowerCase
Browse files Browse the repository at this point in the history
Made einsum op convert equation string to lower case
  • Loading branch information
TomWildenhain-Microsoft authored Sep 11, 2020
2 parents d3eb9e3 + 0d73dd7 commit 07c51be
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tf2onnx/onnx_opset/math.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,7 @@ class Einsum:
@classmethod
def version_12(cls, ctx, node, **kwargs):
del node.attr["N"]
node.attr["equation"].s = node.attr["equation"].s.lower()


@tf_op("IsFinite")
Expand Down

0 comments on commit 07c51be

Please sign in to comment.