You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2019/12/11 02:01:44 UTC

[GitHub] [incubator-tvm] tkclimb commented on a change in pull request #4483: [WIP][relay][op] add expand op (from ONNX) to relay frontend

tkclimb commented on a change in pull request #4483: [WIP][relay][op] add expand op (from ONNX) to relay frontend
URL: https://github.com/apache/incubator-tvm/pull/4483#discussion_r356371464
 
 

 ##########
 File path: python/tvm/relay/frontend/onnx.py
 ##########
 @@ -1080,6 +1080,18 @@ class Or(Elemwise):
     def _impl_v7(cls, inputs, attr, params):
         return _op.logical_or(inputs[0], inputs[1])
 
+class Expand(OnnxOpConverter):
+    """ Operator converter for Expand.
+    """
+
+    @classmethod
+    def _impl_v1(cls, inputs, attr, params):
 
 Review comment:
   Thanks, I'll fix the version.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services