Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
65a18a0f
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
65a18a0f
编写于
6月 26, 2019
作者:
Y
Yanzhan Yang
提交者:
GitHub
6月 26, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
enhance auto debug script (#1705)
上级
a087196f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
15 addition
and
6 deletion
+15
-6
tools/python/fluidtools/run.py
tools/python/fluidtools/run.py
+15
-6
未找到文件。
tools/python/fluidtools/run.py
浏览文件 @
65a18a0f
...
...
@@ -13,6 +13,7 @@ output_path = "outputs"
diff_threshold
=
0.01
is_lod
=
False
mobile_model_path
=
""
fast_check
=
False
np
.
set_printoptions
(
linewidth
=
150
)
...
...
@@ -221,6 +222,9 @@ def save_all_op_output(feed_kv=None):
if
not
os
.
path
.
exists
(
output_path
):
os
.
mkdir
(
output_path
)
ops
=
prog
.
current_block
().
ops
fetch_names
=
[]
for
fetch
in
fetches
:
fetch_names
.
append
(
fetch
.
name
)
for
i
in
range
(
len
(
ops
)):
op
=
ops
[
i
]
var_name
=
None
...
...
@@ -230,6 +234,9 @@ def save_all_op_output(feed_kv=None):
break
if
"sequence_pool"
in
var_name
:
continue
if
fast_check
:
if
var_name
not
in
fetch_names
:
continue
try
:
data
=
get_var_data
(
var_name
,
feed_kv
=
feed_kv
).
flatten
().
tolist
()
sample
=
tensor_sample
(
data
)
...
...
@@ -313,10 +320,11 @@ def check_mobile_results(args, fuse, mem_opt):
error_values1
=
values1
error_values2
=
values2
break
for
name
in
fetch_names
:
if
name
not
in
checked_names
:
error_index
=
-
1
break
if
error_index
==
None
:
for
name
in
fetch_names
:
if
name
not
in
checked_names
:
error_index
=
-
1
break
if
error_index
==
None
:
pp_green
(
"outputs are all correct"
,
1
)
elif
error_index
==
-
1
:
...
...
@@ -379,8 +387,9 @@ def main():
args
+=
" "
+
str
(
sample_step
)
for
var_name
in
output_var_cache
.
keys
():
args
+=
" "
+
var_name
check_mobile_results
(
args
,
False
,
False
)
check_mobile_results
(
args
,
False
,
True
)
if
not
fast_check
:
check_mobile_results
(
args
,
False
,
False
)
check_mobile_results
(
args
,
False
,
True
)
check_mobile_results
(
args
,
True
,
False
)
check_mobile_results
(
args
,
True
,
True
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录