mmdeploy/mmdeploy/apis/utils/__init__.py
q.yao d6fdb3e860
[Refactor] Add backend manager for 1.x (#1515)
* backend manager 1.x

* update pplnn init

* rename file

* add to backend

* add check env and misc

* fix action

* fix ut

* fix comment
2022-12-28 11:38:01 +08:00

10 lines
320 B
Python

# Copyright (c) OpenMMLab. All rights reserved.
from .calibration import create_calib_input_data
from .utils import (build_task_processor, get_predefined_partition_cfg,
to_backend)
__all__ = [
'create_calib_input_data', 'build_task_processor',
'get_predefined_partition_cfg', 'to_backend'
]