q.yao 0897139744
[Fix] Fix onnx multiple domain registry (#270)
* Fix onnx multiple domain registry

* recover test args

* remove wrong status

* replace map with unordered_map

* add symbolic rewriter
2021-12-09 17:35:28 +08:00

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