mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
10 lines
189 B
C++
10 lines
189 B
C++
|
#include "ort_utils.h"
|
||
|
|
||
|
namespace mmlab {
|
||
|
|
||
|
std::vector<OrtCustomOp*>& get_mmlab_custom_ops() {
|
||
|
static std::vector<OrtCustomOp*> _custom_ops;
|
||
|
return _custom_ops;
|
||
|
}
|
||
|
} // namespace mmlab
|