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/10 16:22:59 UTC

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

cchung100m 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_r356127732
 
 

 ##########
 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:
   Do we need to change the version number because the operator has been available since version 8 of the default ONNX operator set?

----------------------------------------------------------------
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