1
0
mirror of https://github.com/open-mmlab/mmdeploy.git synced 2025-01-14 08:09:43 +08:00
q.yao ea3078aa56
Update custom ops namespace ()
* Update custom ops namespace

* rename register, rename generated library name

* rename domain to mmcv
2021-11-01 10:48:21 +08:00

10 lines
198 B
C++

#include "ort_utils.h"
namespace mmdeploy {
std::vector<OrtCustomOp*>& get_mmdeploy_custom_ops() {
static std::vector<OrtCustomOp*> _custom_ops;
return _custom_ops;
}
} // namespace mmdeploy