siju-samuel commented on a change in pull request #6446:
URL: https://github.com/apache/incubator-tvm/pull/6446#discussion_r487178658



##########
File path: python/tvm/relay/frontend/onnx.py
##########
@@ -1050,6 +1050,17 @@ def _impl_v1(cls, inputs, attr, params):
         return AttrCvt("take", extras={"axis": axis})(inputs, {})
 
 
+class GatherElements(OnnxOpConverter):
+    """ Operator converter for GatherElements.
+    """
+    @classmethod
+    def _impl_v1(cls, inputs, attr, params):
+        data = inputs[0]
+        indices = inputs[1]
+        axis = attr.get('axis', 0)

Review comment:
       please follow the changes in pr #6448 here also, 
   check and change in test code as well.




----------------------------------------------------------------
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:
[email protected]


Reply via email to