Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
57858b93
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看板
提交
57858b93
编写于
9月 26, 2019
作者:
W
wangguibao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
CTR prediction profiling
上级
5872a659
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
40 addition
and
3 deletion
+40
-3
demo-serving/op/ctr_prediction_op.cpp
demo-serving/op/ctr_prediction_op.cpp
+30
-1
demo-serving/op/ctr_prediction_op.h
demo-serving/op/ctr_prediction_op.h
+7
-0
predictor/common/constant.h
predictor/common/constant.h
+0
-2
predictor/src/pdserving.cpp
predictor/src/pdserving.cpp
+3
-0
未找到文件。
demo-serving/op/ctr_prediction_op.cpp
浏览文件 @
57858b93
...
...
@@ -23,6 +23,9 @@
#include "predictor/framework/kv_manager.h"
#include "predictor/framework/memory.h"
// Flag where enable profiling mode
DECLARE_bool
(
enable_ctr_profiling
);
namespace
baidu
{
namespace
paddle_serving
{
namespace
serving
{
...
...
@@ -46,6 +49,11 @@ const int CTR_PREDICTION_DENSE_SLOT_ID = 26;
const
int
CTR_PREDICTION_DENSE_DIM
=
13
;
const
int
CTR_PREDICTION_EMBEDDING_SIZE
=
10
;
bthread
::
Mutex
CTRPredictionOp
::
mutex_
;
int64_t
CTRPredictionOp
::
cube_time_us_
=
0
;
int32_t
CTRPredictionOp
::
cube_req_num_
=
0
;
int32_t
CTRPredictionOp
::
cube_req_key_num_
=
0
;
void
fill_response_with_message
(
Response
*
response
,
int
err_code
,
std
::
string
err_msg
)
{
...
...
@@ -135,7 +143,28 @@ int CTRPredictionOp::inference() {
return
0
;
}
else
if
(
kvinfo
->
sparse_param_service_type
==
configure
::
EngineDesc
::
REMOTE
)
{
int
ret
=
cube
->
seek
(
table_name
,
keys
,
&
values
);
struct
timeval
start
;
struct
timeval
end
;
int
ret
;
if
(
FLAGS_enable_ctr_profiling
)
{
gettimeofday
(
&
start
,
NULL
);
ret
=
cube
->
seek
(
table_name
,
keys
,
&
values
);
gettimeofday
(
&
end
,
NULL
);
uint64_t
usec
=
end
.
tv_sec
*
1e6
+
end
.
tv_usec
-
start
.
tv_sec
*
1e6
-
start
.
tv_usec
;
// Statistics
mutex_
.
lock
();
cube_time_us_
+=
usec
;
++
cube_req_num_
;
cube_req_key_num_
+=
keys
.
size
();
mutex_
.
unlock
();
}
else
{
ret
=
cube
->
seek
(
table_name
,
keys
,
&
values
);
}
if
(
ret
!=
0
)
{
fill_response_with_message
(
res
,
-
1
,
"Query cube for embeddings error"
);
LOG
(
ERROR
)
<<
"Query cube for embeddings error"
;
...
...
demo-serving/op/ctr_prediction_op.h
浏览文件 @
57858b93
...
...
@@ -55,6 +55,7 @@ static const char* CTR_PREDICTION_MODEL_NAME = "ctr_prediction";
* and modifications we made
*
*/
class
CTRPredictionOp
:
public
baidu
::
paddle_serving
::
predictor
::
OpWithChannel
<
baidu
::
paddle_serving
::
predictor
::
ctr_prediction
::
Response
>
{
...
...
@@ -64,6 +65,12 @@ class CTRPredictionOp
DECLARE_OP
(
CTRPredictionOp
);
int
inference
();
private:
static
bthread
::
Mutex
mutex_
;
static
int64_t
cube_time_us_
;
static
int32_t
cube_req_num_
;
static
int32_t
cube_req_key_num_
;
};
}
// namespace serving
...
...
predictor/common/constant.h
浏览文件 @
57858b93
...
...
@@ -40,8 +40,6 @@ DECLARE_int32(reload_interval_s);
DECLARE_bool
(
enable_model_toolkit
);
DECLARE_string
(
enable_protocol_list
);
DECLARE_bool
(
enable_cube
);
DECLARE_string
(
cube_config_path
);
DECLARE_string
(
cube_config_file
);
// STATIC Variables
extern
const
char
*
START_OP_NAME
;
...
...
predictor/src/pdserving.cpp
浏览文件 @
57858b93
...
...
@@ -69,6 +69,9 @@ static bvar::PassiveStatus<std::string> s_predictor_revision(
DEFINE_bool
(
V
,
false
,
"print version, bool"
);
DEFINE_bool
(
g
,
false
,
"user defined gflag path"
);
DEFINE_bool
(
enable_ctr_profiling
,
false
,
"Enable profiling in CTR prediction demo"
);
DECLARE_string
(
flagfile
);
namespace
bthread
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录