-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Support corner_pool related custom operators for onnxruntime in mmcv #997
Conversation
Codecov Report
@@ Coverage Diff @@
## master #997 +/- ##
==========================================
- Coverage 64.60% 64.57% -0.04%
==========================================
Files 152 152
Lines 9779 9792 +13
Branches 1779 1779
==========================================
+ Hits 6318 6323 +5
- Misses 3133 3141 +8
Partials 328 328
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
…TopPool, BottomPool, LeftPool and RightPool
…erpool_onnx_exporter
Hi, any reviewers? |
Thanks for the contribution! |
PyTorch built-in ops support more platforms and might get better support from different deploy backends in the future. |
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.
Hi, could you please add document about your ops in onnxruntime_custom_ops and onnxruntime_op?
The implementation of |
…erpool_onnx_exporter
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.
LGTM!
@ZwwWayne any comments? |
Hi, this PR supports to export corner_pool related custom operators (
TopPool
,BottomPool
,LeftPool
,RightPool
) to onnx, and run it with onnxruntime.It's working in process during my free time.