Skip to content

Commit

Permalink
Merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
soiferj committed Aug 8, 2019
1 parent e122e21 commit 89a9a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def _impl(inputs, attr, params):
adj_y = attr['adj_y']
input_x = _op.transpose(input_x, axes=[0, 2, 1]) if adj_x else input_x
input_y = _op.transpose(input_y, axes=[0, 2, 1]) if not adj_y else input_y
ret = _get_relay_op('batch_matmul')(input_x, input_y)
ret = get_relay_op('batch_matmul')(input_x, input_y)

# reshape result back to n-dimensional
if len(orig_shape_x) > 3:
Expand Down

0 comments on commit 89a9a7b

Please sign in to comment.