-
Couldn't load subscription status.
- Fork 3.7k
[Relay][Frontend][TFLite] Implementation of tile for TFLite #3814
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Hi @kevinthesun @icemelon9 I would appreciate if you can help to manage it, thanks :) |
|
@apivovarov Could you help review since you worked on TFLite as well? |
| # reps (tuple of int) – The number of times repeating the tensor data. | ||
| reps = tuple(self.get_tensor_value(input_tensors[1])) | ||
|
|
||
| out = _op.tile(in_expr, reps) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor comment - Maybe directly return _op.tile(...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe current implementation is acceptable. Because all other ops are implemented in this way:
out = _op.xx()
# if there are fused activation fn:
# out = self.convert_fused_activation_function(out, fused_activation_fn)
return out
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this is far from a blocking comment :) Consistency is better
|
Hi @hlu1 I would appreciate if you can help to manage it, thanks :) |
Hi @FrozenGene
I add the missing operator 'tile' for TFLite, I would appreciate if you can help to review it, thanks.