Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
8891f0e9
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看板
提交
8891f0e9
编写于
11月 06, 2019
作者:
S
slf12
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
set default scope None test=develop
上级
34b504eb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
5 addition
and
3 deletion
+5
-3
paddleslim/quant/quant_embedding.py
paddleslim/quant/quant_embedding.py
+5
-3
未找到文件。
paddleslim/quant/quant_embedding.py
浏览文件 @
8891f0e9
...
...
@@ -19,6 +19,7 @@ import logging
import
copy
import
numpy
as
np
import
paddle.fluid
as
fluid
from
paddle.fluid.framework
import
IrGraph
from
paddle.fluid
import
core
...
...
@@ -216,7 +217,7 @@ def _quant_embedding_abs_max(graph, scope, place, config):
scope
.
var
(
_get_scale_var_name
(
var_name
))
#set var by tensor array or scale
_restore_var
(
_get_quant_var_name
(
var_name
),
quanted_tensor
,
scope
,
place
)
_restore_var
(
_get_scale_var_name
(
var_name
),
scale
,
scope
,
place
)
_restore_var
(
_get_scale_var_name
(
var_name
),
np
.
array
(
scale
)
,
scope
,
place
)
# insert dequantize_abs_max op
for
op_node
in
embedding_node
.
outputs
:
...
...
@@ -231,12 +232,12 @@ def _quant_embedding_abs_max(graph, scope, place, config):
graph
.
safe_remove_nodes
(
embedding_node
)
def
quant_embedding
(
program
,
scope
,
place
,
config
):
def
quant_embedding
(
program
,
place
,
config
,
scope
=
None
):
"""
quant lookup_table op parameters
Args:
program(fluid.Program): infer program
scope(fluid.Scope): the scope to store var,
usually is
fluid.global_scope()
scope(fluid.Scope): the scope to store var,
when is None will use
fluid.global_scope()
place(fluid.CPUPlace or fluid.CUDAPlace): place
config(dict): config to quant. The keys are 'params_name', 'quantize_type',
\
'quantize_bits', 'dtype', 'threshold'.
\
...
...
@@ -249,6 +250,7 @@ def quant_embedding(program, scope, place, config):
"""
assert
isinstance
(
config
,
dict
),
"config must be dict"
config
=
_merge_config
(
copy
.
deepcopy
(
default_config
),
config
)
scope
=
fluid
.
global_scope
()
if
scope
is
None
else
scope
graph
=
IrGraph
(
core
.
Graph
(
program
.
desc
),
for_test
=
True
)
if
config
[
'quantize_type'
]
==
'abs_max'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录