Skip to content

Commit 6816bb3

Browse files
[Fix] Reanme ppl to pplnn for all cases (open-mmlab#273)
* add speed benchmark for pplnn and replace all ppl in docs with pplnn * replace ppl with pplnn for all codes * docs zh * fix crnn config path * update docstring * rename * update ppl to pplnn in readme_zh Co-authored-by: maningsheng <[email protected]>
1 parent 4017498 commit 6816bb3

30 files changed

+108
-106
lines changed

README_zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ MMDeploy 是一个开源深度学习模型部署工具箱,它是 [OpenMMLab](h
3636

3737
- [x] ONNX Runtime
3838
- [x] TensorRT
39-
- [x] PPL
39+
- [x] PPLNN
4040
- [x] ncnn
4141

4242
## 安装

configs/_base_/backends/ppl.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

configs/_base_/backends/pplnn.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
backend_config = dict(type='pplnn')

configs/mmcls/classification_ppl_dynamic-224x224.py renamed to configs/mmcls/classification_pplnn_dynamic-224x224.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_base_ = ['./classification_dynamic.py', '../_base_/backends/ppl.py']
1+
_base_ = ['./classification_dynamic.py', '../_base_/backends/pplnn.py']
22

33
onnx_config = dict(input_shape=None)
44

configs/mmdet/detection/detection_ppl_dynamic-800x1344.py renamed to configs/mmdet/detection/detection_pplnn_dynamic-800x1344.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_base_ = ['../_base_/base_dynamic.py', '../../_base_/backends/ppl.py']
1+
_base_ = ['../_base_/base_dynamic.py', '../../_base_/backends/pplnn.py']
22

33
onnx_config = dict(input_shape=None)
44

configs/mmdet/instance-seg/instance-seg_ppl_dynamic-800x1344.py renamed to configs/mmdet/instance-seg/instance-seg_pplnn_dynamic-800x1344.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_base_ = [
2-
'../_base_/base_instance-seg_dynamic.py', '../../_base_/backends/ppl.py'
2+
'../_base_/base_instance-seg_dynamic.py', '../../_base_/backends/pplnn.py'
33
]
44

55
onnx_config = dict(input_shape=None)

configs/mmedit/super-resolution/super-resolution_ppl_dynamic-32x32.py renamed to configs/mmedit/super-resolution/super-resolution_pplnn_dynamic-32x32.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_base_ = ['./super-resolution_dynamic.py', '../../_base_/backends/ppl.py']
1+
_base_ = ['./super-resolution_dynamic.py', '../../_base_/backends/pplnn.py']
22

33
onnx_config = dict(input_shape=None)
44

configs/mmocr/text-detection/text-detection_ppl_dynamic-640x640.py renamed to configs/mmocr/text-detection/text-detection_pplnn_dynamic-640x640.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_base_ = ['./text-detection_dynamic.py', '../../_base_/backends/ppl.py']
1+
_base_ = ['./text-detection_dynamic.py', '../../_base_/backends/pplnn.py']
22

33
onnx_config = dict(input_shape=None)
44

configs/mmseg/segmentation_ppl_static-1024x2048.py renamed to configs/mmseg/segmentation_pplnn_dynamic-1024x2048.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_base_ = ['./segmentation_static.py', '../_base_/backends/ppl.py']
1+
_base_ = ['./segmentation_dynamic.py', '../_base_/backends/pplnn.py']
22

33
onnx_config = dict(input_shape=[2048, 1024])
44

0 commit comments

Comments
 (0)