Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
9cc7dfa8
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看板
未验证
提交
9cc7dfa8
编写于
10月 15, 2019
作者:
J
juncaipeng
提交者:
GitHub
10月 15, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix quant dequant fuse pass (#2190)
* fix bug for accessing the removed node, test=develop
上级
4d530acc
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
40 addition
and
35 deletion
+40
-35
lite/core/mir/fusion/quant_dequant_fuse_pass.cc
lite/core/mir/fusion/quant_dequant_fuse_pass.cc
+40
-35
未找到文件。
lite/core/mir/fusion/quant_dequant_fuse_pass.cc
浏览文件 @
9cc7dfa8
...
...
@@ -30,47 +30,52 @@ void QuantDequantFusePass::Apply(const std::unique_ptr<SSAGraph>& graph) {
// releated nodes
std
::
unordered_set
<
std
::
string
>
quant_types
=
{
"fake_quantize_range_abs_max"
,
"fake_quantize_moving_average_abs_max"
};
std
::
vector
<
Node
*>
quant_nodes
;
for
(
auto
&
cur_node
:
graph
->
mutable_nodes
())
{
if
(
cur_node
.
IsStmt
()
&&
quant_types
.
count
(
cur_node
.
stmt
()
->
op_type
()))
{
// find input nodes and output nodes
std
::
list
<
Node
*>
input_nodes
=
cur_node
.
inlinks
;
std
::
list
<
Node
*>
output_nodes
=
cur_node
.
outlinks
;
CHECK_EQ
(
input_nodes
.
size
(),
2
);
CHECK_EQ
(
output_nodes
.
size
(),
2
);
bool
front_is_scale
=
input_nodes
.
front
()
->
arg
()
->
is_weight
;
Node
*
input_scale_node
=
front_is_scale
?
input_nodes
.
front
()
:
input_nodes
.
back
();
Node
*
input_act_node
=
front_is_scale
?
input_nodes
.
back
()
:
input_nodes
.
front
();
front_is_scale
=
output_nodes
.
front
()
->
arg
()
->
is_weight
;
Node
*
output_scale_node
=
front_is_scale
?
output_nodes
.
front
()
:
output_nodes
.
back
();
Node
*
output_act_node
=
front_is_scale
?
output_nodes
.
back
()
:
output_nodes
.
front
();
quant_nodes
.
push_back
(
&
cur_node
);
}
}
for
(
auto
quant_node
:
quant_nodes
)
{
// find input nodes and output nodes
std
::
list
<
Node
*>
input_nodes
=
quant_node
->
inlinks
;
std
::
list
<
Node
*>
output_nodes
=
quant_node
->
outlinks
;
CHECK_EQ
(
input_nodes
.
size
(),
2
);
CHECK_EQ
(
output_nodes
.
size
(),
2
);
// relink nodes and save value to quantized_node
int
bit_length
=
cur_node
.
stmt
()
->
op_info
()
->
GetAttr
<
int
>
(
"bit_length"
);
int
range
=
((
1
<<
(
bit_length
-
1
))
-
1
);
auto
*
scope
=
cur_node
.
stmt
()
->
op
()
->
scope
();
auto
scale_tensor
=
scope
->
FindVar
(
output_scale_node
->
arg
()
->
name
)
->
GetMutable
<
lite
::
Tensor
>
();
float
scale_value
=
scale_tensor
->
data
<
float
>
()[
0
]
/
range
;
bool
front_is_scale
=
input_nodes
.
front
()
->
arg
()
->
is_weight
;
Node
*
input_scale_node
=
front_is_scale
?
input_nodes
.
front
()
:
input_nodes
.
back
();
Node
*
input_act_node
=
front_is_scale
?
input_nodes
.
back
()
:
input_nodes
.
front
();
front_is_scale
=
output_nodes
.
front
()
->
arg
()
->
is_weight
;
Node
*
output_scale_node
=
front_is_scale
?
output_nodes
.
front
()
:
output_nodes
.
back
();
Node
*
output_act_node
=
front_is_scale
?
output_nodes
.
back
()
:
output_nodes
.
front
();
for
(
auto
*
quantized_node_ptr
:
output_act_node
->
outlinks
)
{
quantized_node_ptr
->
stmt
()
->
mutable_op_info
()
->
SetAttr
<
int
>
(
"bit_length"
,
bit_length
);
quantized_node_ptr
->
stmt
()
->
mutable_op_info
()
->
SetAttr
<
float
>
(
"input_scale"
,
scale_value
);
IR_NODE_LINK_TO
(
input_act_node
,
quantized_node_ptr
)
RemoveDirectedLink
(
output_act_node
,
quantized_node_ptr
);
}
// relink nodes and save value to quantized_node
int
bit_length
=
quant_node
->
stmt
()
->
op_info
()
->
GetAttr
<
int
>
(
"bit_length"
);
int
range
=
((
1
<<
(
bit_length
-
1
))
-
1
);
auto
*
scope
=
quant_node
->
stmt
()
->
op
()
->
scope
();
auto
scale_tensor
=
scope
->
FindVar
(
output_scale_node
->
arg
()
->
name
)
->
GetMutable
<
lite
::
Tensor
>
();
float
scale_value
=
scale_tensor
->
data
<
float
>
()[
0
]
/
range
;
// delete nodes and edges
std
::
unordered_set
<
const
Node
*>
nodes2rm
=
{
input_scale_node
,
&
cur_node
,
output_scale_node
,
output_act_node
};
GraphSafeRemoveNodes
(
graph
.
get
(),
nodes2rm
);
auto
outlinks
=
output_act_node
->
outlinks
;
for
(
auto
*
quantized_node_ptr
:
outlinks
)
{
quantized_node_ptr
->
stmt
()
->
mutable_op_info
()
->
SetAttr
<
int
>
(
"bit_length"
,
bit_length
);
quantized_node_ptr
->
stmt
()
->
mutable_op_info
()
->
SetAttr
<
float
>
(
"input_scale"
,
scale_value
);
IR_NODE_LINK_TO
(
input_act_node
,
quantized_node_ptr
)
RemoveDirectedLink
(
output_act_node
,
quantized_node_ptr
);
}
// delete nodes and edges
std
::
unordered_set
<
const
Node
*>
nodes2rm
=
{
input_scale_node
,
quant_node
,
output_scale_node
,
output_act_node
};
GraphSafeRemoveNodes
(
graph
.
get
(),
nodes2rm
);
}
// fuse quantized node and dequant node
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录