mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* Fix onnx multiple domain registry * recover test args * remove wrong status * replace map with unordered_map * add symbolic rewriter
11 lines
225 B
C++
11 lines
225 B
C++
// Copyright (c) OpenMMLab. All rights reserved.
|
|
#include "ort_utils.h"
|
|
|
|
namespace mmdeploy {
|
|
|
|
CustomOpsTable& get_mmdeploy_custom_ops() {
|
|
static CustomOpsTable _custom_ops;
|
|
return _custom_ops;
|
|
}
|
|
} // namespace mmdeploy
|