[Feature] Support for RepPoints ONNXRuntime
See original GitHub issueMotivation
Is there any plan to support RepPoints for ONNXRuntime, specifically adding the MMCVDeformConv2d
support? If not, is there any easy way to add them as custom operations? There was an earlier discussion https://github.com/open-mmlab/mmdeploy/issues/439
Related resources
No response
Additional context
No response
Issue Analytics
- State:
- Created 10 months ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Unable to run evaluation on ONNX model due to unregistered ...
According to here, my understanding is that MMCVModulatedDeformConv2d is supported as a custom ONNX operation in MMDeploy.
Read more >ONNX Runtime compatibility
All versions of ONNX Runtime support ONNX opsets from ONNX v1.2.1+ (opset version 7 and higher). For example: if an ONNX Runtime release...
Read more >Python | onnxruntime
Train a model using your favorite framework, export to ONNX format and inference in any supported ONNX Runtime language! PyTorch CV. In this...
Read more >C | onnxruntime
This feature allows users to “shrink” the arena at some cadence. Currently, the only supported cadence is at the end of every Run()...
Read more >ONNX Runtime | Home
Support for a variety of frameworks, operating systems and hardware ... Please help us improve ONNX Runtime by participating in our customer survey....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@dillonalaird yes, the native implementation of GEMM is very slow. You can use intelMKL, arm compute library or cublas to perform the GEMM (depends on what platform you want to use). Of cause you can do it by your self! how-to-optimize-gemm this is a good start point.
Awesome, thanks for that info @grimoire!