[cherry-pick] [ARM] Add int64 implement for gather
and greater_than
#4444
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
cherry-picked from: #4342 ,修复gcn模型不能运行问题
【背景】
gather
算子和greater_than
算子算子缺乏int64实现,Paddlepaddle
中该算子有int64
实现。 导致PaddlePaddle
训练出的部分模型在Paddle-Lite上加载失败。【本PR工作】为了保证
PaddlePaddle
训练出来的模型在Paddle-Lite
上可以正常预测,本PR为gather
和greater_than
补充了int64
实现