Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
13fb9138
P
PaddleSlim
项目概览
PaddlePaddle
/
PaddleSlim
1 年多 前同步成功
通知
51
Star
1434
Fork
344
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
53
列表
看板
标记
里程碑
合并请求
16
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleSlim
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
53
Issue
53
列表
看板
标记
里程碑
合并请求
16
合并请求
16
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
13fb9138
编写于
2月 18, 2022
作者:
Z
zhouzj
提交者:
GitHub
2月 18, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix a bug and update docs. (#996)
上级
0706349b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
5 deletion
+6
-5
docs/zh_cn/tutorials/analysis/dygraph/latency_predictor.md
docs/zh_cn/tutorials/analysis/dygraph/latency_predictor.md
+4
-3
paddleslim/analysis/_utils.py
paddleslim/analysis/_utils.py
+1
-1
paddleslim/analysis/extract_features.py
paddleslim/analysis/extract_features.py
+1
-1
未找到文件。
docs/zh_cn/tutorials/analysis/dygraph/latency_predictor.md
浏览文件 @
13fb9138
...
...
@@ -7,9 +7,10 @@
## 1. 准备环境
### 1.1 版本要求
```
bash
python
>
=
3.7
python
==
3.7
\3
.9
PaddleSlim>
=
2.3.0
```
> 注:在 macOS 环境下要求 python==3.9; linux 环境下要求 python==3.7\3.9
### 1.2 安装 PaddleSlim
*
通过 pip install 的方式进行安装:
```
bash
...
...
@@ -40,7 +41,7 @@ tar -xf mobilenetv1.tar
from paddleslim.analysis import TableLatencyPredictor
predictor = TableLatencyPredictor(table_file='SD710')
latency = predictor.predict(model_file='mobilenetv1_fp32.pdmodel', param_file='mobilenetv1_fp32.pdiparams, data_type='fp32')
latency = predictor.predict(model_file='mobilenetv1_fp32.pdmodel', param_file='mobilenetv1_fp32.pdiparams
'
, data_type='fp32')
print('predicted latency = {}ms'.format(latency))
```
通过设置 table_file 来指定硬件信息,当前支持“SD625”、“SD710”、“SD845”三款骁龙芯片。
...
...
@@ -61,7 +62,7 @@ print('predicted latency = {}ms'.format(latency))
from paddleslim.analysis import TableLatencyPredictor
predictor = TableLatencyPredictor(table_file='SD710')
predictor.predict(model_file='mobilenetv1_int8.pdmodel', param_file='mobilenetv1_int8.pdiparams, data_type='int8')
predictor.predict(model_file='mobilenetv1_int8.pdmodel', param_file='mobilenetv1_int8.pdiparams
'
, data_type='int8')
```
## 4. 预估效果
...
...
paddleslim/analysis/_utils.py
浏览文件 @
13fb9138
...
...
@@ -248,7 +248,7 @@ def download_predictor(op_dir, op):
def
load_predictor
(
op_type
,
op_dir
,
data_type
=
'fp32'
):
op
=
op_type
if
'conv2d'
in
op_type
:
op
=
'conv2d_'
+
data_type
op
=
f
'
{
op_type
}
_
{
data_type
}
'
elif
'matmul'
in
op_type
:
op
=
'matmul'
...
...
paddleslim/analysis/extract_features.py
浏览文件 @
13fb9138
...
...
@@ -214,7 +214,7 @@ def get_features_from_paramkey(param_key, op_type, data_type):
for
i
in
range
(
len
(
X
)):
if
X
[
i
]
==
''
:
continue
features
[
i
-
1
]
=
int
(
X
[
i
])
features
[
i
]
=
int
(
X
[
i
])
for
i
in
range
(
0
,
len
(
Y
)):
if
len
(
Y
)
==
4
and
i
==
0
:
continue
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录