q.yao ea3078aa56
Update custom ops namespace (#158)
* 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