Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
2ed9048b
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看板
未验证
提交
2ed9048b
编写于
12月 23, 2022
作者:
Z
zhouzj
提交者:
GitHub
12月 23, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Solve the bug that ReconPTQ cannot skip the specified tensor. (#1605)
上级
71b1769e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
1 deletion
+10
-1
paddleslim/quant/reconstruction_quantization.py
paddleslim/quant/reconstruction_quantization.py
+10
-1
未找到文件。
paddleslim/quant/reconstruction_quantization.py
浏览文件 @
2ed9048b
...
...
@@ -161,6 +161,7 @@ class ReconstructionQuantization(
region_weights_names
=
self
.
_config
[
'region_weights_names'
],
recon_level
=
self
.
_config
[
'recon_level'
],
simulate_activation_quant
=
self
.
_config
[
'simulate_activation_quant'
],
skip_tensor_list
=
self
.
_skip_tensor_list
,
num_iterations
=
self
.
_batch_nums
,
lr
=
self
.
_config
[
'lr'
],
bias_correction
=
self
.
_bias_correction
,
...
...
@@ -223,6 +224,7 @@ class ReconstructionQuanter(object):
region_weights_names
,
recon_level
,
simulate_activation_quant
,
skip_tensor_list
=
None
,
num_iterations
=
1000
,
lr
=
0.1
,
bias_correction
=
False
,
...
...
@@ -256,6 +258,7 @@ class ReconstructionQuanter(object):
Currently support ['layer-wise', 'region-wise'] types. Default is layer-wise.
simulate_activation_quant(bool, optional): Whether we need the noise caused by activation
quantization during the reconstruction process.
skip_tensor_list(list): List of skip quant tensor name.
regions(list[list], optional): The list of some regions, each region is a subgraph of
fp32 program and it will have exact 1 input operation and 1 output operation. When
the recon-level is region, the reconstruction loss of each region is minimized.
...
...
@@ -299,6 +302,7 @@ class ReconstructionQuanter(object):
self
.
_region_weights_names
=
region_weights_names
self
.
_bias_correction
=
bias_correction
self
.
_limit
=
limit
self
.
_skip_tensor_list
=
skip_tensor_list
if
recon_level
==
'region-wise'
and
regions
is
None
:
builder
=
RegionBuilder
(
program
=
self
.
_program
)
...
...
@@ -327,6 +331,8 @@ class ReconstructionQuanter(object):
self
.
_input_weight_pairs
[
in_var_name
]
=
in_var_names
break
for
name
in
self
.
_weight_var_names
:
if
self
.
_skip_tensor_list
is
not
None
and
name
in
self
.
_skip_tensor_list
:
continue
region_weights_names
.
append
([
name
])
region_
=
[]
region_
.
append
(
self
.
_input_weight_pairs
[
name
][
0
])
...
...
@@ -735,7 +741,8 @@ class ReconstructionQuanter(object):
def
_update_scale
(
self
):
for
_name
in
self
.
_weight_var_names
:
if
self
.
_skip_tensor_list
is
not
None
and
_name
in
self
.
_skip_tensor_list
:
continue
scale_name
=
_name
+
'.scale'
scale_tensor
=
paddle
.
fluid
.
contrib
.
slim
.
quantization
.
utils
.
load_variable_data
(
self
.
_scope
,
scale_name
)
...
...
@@ -750,6 +757,8 @@ class ReconstructionQuanter(object):
def
_update_weights_to_int
(
self
):
for
weight_var_name
in
self
.
_weight_var_names
:
if
self
.
_skip_tensor_list
is
not
None
and
weight_var_name
in
self
.
_skip_tensor_list
:
continue
alpha_tensor
=
paddle
.
fluid
.
contrib
.
slim
.
quantization
.
utils
.
load_variable_data
(
self
.
_scope
,
weight_var_name
+
'.alpha'
,
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录