mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* Update custom ops namespace * rename register, rename generated library name * rename domain to mmcv
10 lines
198 B
C++
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
|