-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
【PaddlePaddle Hackathon 4】add paddle grid_sampler op #15869
【PaddlePaddle Hackathon 4】add paddle grid_sampler op #15869
Conversation
@OpenVINO-dev-contest could you review this pr please? |
Hi, Im ok with the implementation, Did you refer to openvino's onnx frontend ? if yes, pls add the link into this conversion and it will be helpful for other reviewer to understand your solution more easily. thanks |
src/frontends/paddle/tests/test_models/gen_scripts/generate_grid_sampler.py
Outdated
Show resolved
Hide resolved
|
Hi @Patrick-Star125 ,
|
Got it, test sample with dynami shape has been added. |
auto data = node.get_input("X"); | ||
auto grid = node.get_input("Grid"); | ||
default_opset::GridSample::Attributes attributes{}; | ||
|
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.
please correct the code format here as log reports.
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.
Done
Can one of the admins verify this patch? |
Details:
add grid_sample operation in Paddle front end
Reference:
unit-test