This is an automated email from the ASF dual-hosted git repository.
kevinthesun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git
The following commit(s) were added to refs/heads/master by this push:
new 95e7e34 Support for AddV2 in Relay Tensorflow frontend converter.
(#5046)
95e7e34 is described below
commit 95e7e34ff38d602053aced31389d84888bad9806
Author: Fernand Pajot <[email protected]>
AuthorDate: Thu Mar 12 01:09:00 2020 -0600
Support for AddV2 in Relay Tensorflow frontend converter. (#5046)
---
python/tvm/relay/frontend/tensorflow.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/python/tvm/relay/frontend/tensorflow.py
b/python/tvm/relay/frontend/tensorflow.py
index f1cb815..bed32b7 100644
--- a/python/tvm/relay/frontend/tensorflow.py
+++ b/python/tvm/relay/frontend/tensorflow.py
@@ -1522,6 +1522,7 @@ _freezed_graph_pruned_op_list = ['ReadVariableOp',
'ResourceGather', 'Variable',
_convert_map = {
'Abs' : AttrCvt('abs'),
'Add' : _elemwise('add'),
+ 'AddV2' : _elemwise('add'),
'AddN' : _add_n(),
'All' : _reduce('all'),
'Any' : _reduce('any'),