Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
933b1f6a
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
186
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
933b1f6a
编写于
3月 24, 2020
作者:
W
wangjiawei04
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add dist kv with quant infer op test=serving
上级
c01a9d42
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
22 addition
and
14 deletion
+22
-14
core/general-server/op/general_dist_kv_quant_infer_op.cpp
core/general-server/op/general_dist_kv_quant_infer_op.cpp
+22
-14
未找到文件。
core/general-server/op/general_dist_kv_quant_infer_op.cpp
100755 → 100644
浏览文件 @
933b1f6a
...
...
@@ -23,8 +23,8 @@
#include "core/predictor/framework/infer.h"
#include "core/predictor/framework/memory.h"
#include "core/predictor/framework/resource.h"
#include "core/util/include/timer.h"
#include "core/predictor/tools/quant.h"
#include "core/util/include/timer.h"
namespace
baidu
{
namespace
paddle_serving
{
...
...
@@ -93,7 +93,7 @@ int GeneralDistKVQuantInferOp::inference() {
if
(
values
.
size
()
!=
keys
.
size
()
||
values
[
0
].
buff
.
size
()
==
0
)
{
LOG
(
ERROR
)
<<
"cube value return null"
;
}
TensorVector
sparse_out
;
sparse_out
.
resize
(
sparse_count
);
TensorVector
dense_out
;
...
...
@@ -106,8 +106,8 @@ int GeneralDistKVQuantInferOp::inference() {
baidu
::
paddle_serving
::
predictor
::
Resource
::
instance
();
std
::
shared_ptr
<
PaddleGeneralModelConfig
>
model_config
=
resource
.
get_general_model_config
();
int
cube_quant_bits
=
resource
.
get_cube_quant_bits
();
size_t
EMBEDDING_SIZE
=
0
;
int
cube_quant_bits
=
resource
.
get_cube_quant_bits
();
size_t
EMBEDDING_SIZE
=
0
;
if
(
cube_quant_bits
==
0
)
{
EMBEDDING_SIZE
=
values
[
0
].
buff
.
size
()
/
sizeof
(
float
);
}
else
{
...
...
@@ -140,18 +140,26 @@ int GeneralDistKVQuantInferOp::inference() {
for
(
int
x
=
0
;
x
<
sparse_out
[
sparse_idx
].
lod
[
0
].
back
();
++
x
)
{
float
*
data_ptr
=
dst_ptr
+
x
*
EMBEDDING_SIZE
;
if
(
cube_quant_bits
==
0
)
{
memcpy
(
data_ptr
,
values
[
cube_val_idx
].
buff
.
data
(),
values
[
cube_val_idx
].
buff
.
size
());
memcpy
(
data_ptr
,
values
[
cube_val_idx
].
buff
.
data
(),
values
[
cube_val_idx
].
buff
.
size
());
}
else
{
// min (float), max (float), num, num, num... (Byte)
size_t
num_of_float
=
values
[
cube_val_idx
].
buff
.
size
()
-
2
*
sizeof
(
float
);
float
*
float_ptr
=
new
float
[
num_of_float
];
char
*
src_ptr
=
new
char
[
values
[
cube_val_idx
].
buff
.
size
()];
memcpy
(
src_ptr
,
values
[
cube_val_idx
].
buff
.
data
(),
values
[
cube_val_idx
].
buff
.
size
());
float
*
minmax
=
reinterpret_cast
<
float
*>
(
src_ptr
);
dequant
(
src_ptr
+
2
*
sizeof
(
float
),
float_ptr
,
minmax
[
0
],
minmax
[
1
],
num_of_float
,
cube_quant_bits
);
memcpy
(
data_ptr
,
float_ptr
,
sizeof
(
float
)
*
num_of_float
);
size_t
num_of_float
=
values
[
cube_val_idx
].
buff
.
size
()
-
2
*
sizeof
(
float
);
float
*
float_ptr
=
new
float
[
num_of_float
];
char
*
src_ptr
=
new
char
[
values
[
cube_val_idx
].
buff
.
size
()];
memcpy
(
src_ptr
,
values
[
cube_val_idx
].
buff
.
data
(),
values
[
cube_val_idx
].
buff
.
size
());
float
*
minmax
=
reinterpret_cast
<
float
*>
(
src_ptr
);
dequant
(
src_ptr
+
2
*
sizeof
(
float
),
float_ptr
,
minmax
[
0
],
minmax
[
1
],
num_of_float
,
cube_quant_bits
);
memcpy
(
data_ptr
,
float_ptr
,
sizeof
(
float
)
*
num_of_float
);
delete
float_ptr
;
delete
src_ptr
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录