masahi commented on a change in pull request #6446:
URL: https://github.com/apache/incubator-tvm/pull/6446#discussion_r487277214
##########
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:
thanks for pointing this out, completely forgot
----------------------------------------------------------------
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]