jiangjiajun commented on code in PR #14160:
URL: https://github.com/apache/tvm/pull/14160#discussion_r1121506847
##########
python/tvm/relay/frontend/paddlepaddle.py:
##########
@@ -105,6 +105,16 @@ def convert_unary_op(g, op, block):
g.add_node(op.output("Out")[0], out)
+def convert_tile(g, op, block):
+ """Operator converter for tile."""
+
+ x = g.get_node(op.input("X")[0])
Review Comment:
There're some cases are not covered, please refer this
https://github.com/PaddlePaddle/Paddle2ONNX/blob/develop/paddle2onnx/mapper/tensor/tile.cc#L33
for its implemenation
##########
python/tvm/relay/frontend/paddlepaddle.py:
##########
@@ -105,6 +105,16 @@ def convert_unary_op(g, op, block):
g.add_node(op.output("Out")[0], out)
+def convert_tile(g, op, block):
+ """Operator converter for tile."""
+
+ x = g.get_node(op.input("X")[0])
Review Comment:
Also please update the test case
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]