Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
579d9597
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
185
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
579d9597
编写于
2月 24, 2020
作者:
M
MRXLT
提交者:
GitHub
2月 24, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #202 from guru4elephant/refine_log
make warning message of inference engine as VLOG2
上级
8b027088
400bf520
变更
11
显示空白变更内容
内联
并排
Showing
11 changed file
with
85 addition
and
90 deletion
+85
-90
core/predictor/src/pdserving.cpp
core/predictor/src/pdserving.cpp
+16
-16
core/sdk-cpp/include/stub_impl.hpp
core/sdk-cpp/include/stub_impl.hpp
+9
-9
core/sdk-cpp/src/abtest.cpp
core/sdk-cpp/src/abtest.cpp
+6
-6
core/sdk-cpp/src/config_manager.cpp
core/sdk-cpp/src/config_manager.cpp
+7
-7
core/sdk-cpp/src/endpoint.cpp
core/sdk-cpp/src/endpoint.cpp
+3
-3
core/sdk-cpp/src/predictor_sdk.cpp
core/sdk-cpp/src/predictor_sdk.cpp
+8
-8
core/sdk-cpp/src/variant.cpp
core/sdk-cpp/src/variant.cpp
+4
-4
paddle_inference/inferencer-fluid-cpu/include/fluid_cpu_engine.h
...inference/inferencer-fluid-cpu/include/fluid_cpu_engine.h
+16
-16
paddle_inference/inferencer-fluid-gpu/include/fluid_gpu_engine.h
...inference/inferencer-fluid-gpu/include/fluid_gpu_engine.h
+9
-9
python/examples/fit_a_line/local_train.py
python/examples/fit_a_line/local_train.py
+2
-2
python/examples/imdb/local_train.py
python/examples/imdb/local_train.py
+5
-10
未找到文件。
core/predictor/src/pdserving.cpp
浏览文件 @
579d9597
...
@@ -99,14 +99,14 @@ static void g_change_server_port() {
...
@@ -99,14 +99,14 @@ static void g_change_server_port() {
if
(
read_proto_conf
(
FLAGS_inferservice_path
.
c_str
(),
if
(
read_proto_conf
(
FLAGS_inferservice_path
.
c_str
(),
FLAGS_inferservice_file
.
c_str
(),
FLAGS_inferservice_file
.
c_str
(),
&
conf
)
!=
0
)
{
&
conf
)
!=
0
)
{
LOG
(
WARNING
)
<<
"failed to load configure["
<<
FLAGS_inferservice_path
VLOG
(
2
)
<<
"failed to load configure["
<<
FLAGS_inferservice_path
<<
","
<<
FLAGS_inferservice_file
<<
"]."
;
<<
","
<<
FLAGS_inferservice_file
<<
"]."
;
return
;
return
;
}
}
uint32_t
port
=
conf
.
port
();
uint32_t
port
=
conf
.
port
();
if
(
port
!=
0
)
{
if
(
port
!=
0
)
{
FLAGS_port
=
port
;
FLAGS_port
=
port
;
LOG
(
INFO
)
<<
"use configure["
<<
FLAGS_inferservice_path
<<
"/"
VLOG
(
2
)
<<
"use configure["
<<
FLAGS_inferservice_path
<<
"/"
<<
FLAGS_inferservice_file
<<
"] port["
<<
port
<<
FLAGS_inferservice_file
<<
"] port["
<<
port
<<
"] instead of flags"
;
<<
"] instead of flags"
;
}
}
...
@@ -157,7 +157,7 @@ int main(int argc, char** argv) {
...
@@ -157,7 +157,7 @@ int main(int argc, char** argv) {
mkdir
(
FLAGS_log_dir
.
c_str
(),
0777
);
mkdir
(
FLAGS_log_dir
.
c_str
(),
0777
);
ret
=
stat
(
FLAGS_log_dir
.
c_str
(),
&
st_buf
);
ret
=
stat
(
FLAGS_log_dir
.
c_str
(),
&
st_buf
);
if
(
ret
!=
0
)
{
if
(
ret
!=
0
)
{
LOG
(
WARNING
)
<<
"Log path "
<<
FLAGS_log_dir
VLOG
(
2
)
<<
"Log path "
<<
FLAGS_log_dir
<<
" not exist, and create fail"
;
<<
" not exist, and create fail"
;
return
-
1
;
return
-
1
;
}
}
...
@@ -166,7 +166,7 @@ int main(int argc, char** argv) {
...
@@ -166,7 +166,7 @@ int main(int argc, char** argv) {
FLAGS_logbufsecs
=
0
;
FLAGS_logbufsecs
=
0
;
FLAGS_logbuflevel
=
-
1
;
FLAGS_logbuflevel
=
-
1
;
#endif
#endif
LOG
(
INFO
)
<<
"Succ initialize logger"
;
VLOG
(
2
)
<<
"Succ initialize logger"
;
// initialize resource manager
// initialize resource manager
if
(
Resource
::
instance
().
initialize
(
FLAGS_resource_path
,
if
(
Resource
::
instance
().
initialize
(
FLAGS_resource_path
,
...
@@ -175,7 +175,7 @@ int main(int argc, char** argv) {
...
@@ -175,7 +175,7 @@ int main(int argc, char** argv) {
<<
"/"
<<
FLAGS_resource_file
;
<<
"/"
<<
FLAGS_resource_file
;
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ initialize resource"
;
VLOG
(
2
)
<<
"Succ initialize resource"
;
// initialize workflow manager
// initialize workflow manager
if
(
WorkflowManager
::
instance
().
initialize
(
FLAGS_workflow_path
,
if
(
WorkflowManager
::
instance
().
initialize
(
FLAGS_workflow_path
,
...
@@ -184,7 +184,7 @@ int main(int argc, char** argv) {
...
@@ -184,7 +184,7 @@ int main(int argc, char** argv) {
<<
FLAGS_workflow_path
<<
"/"
<<
FLAGS_workflow_file
;
<<
FLAGS_workflow_path
<<
"/"
<<
FLAGS_workflow_file
;
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ initialize workflow"
;
VLOG
(
2
)
<<
"Succ initialize workflow"
;
// initialize service manager
// initialize service manager
if
(
InferServiceManager
::
instance
().
initialize
(
if
(
InferServiceManager
::
instance
().
initialize
(
...
@@ -193,7 +193,7 @@ int main(int argc, char** argv) {
...
@@ -193,7 +193,7 @@ int main(int argc, char** argv) {
<<
FLAGS_inferservice_path
<<
"/"
<<
FLAGS_inferservice_file
;
<<
FLAGS_inferservice_path
<<
"/"
<<
FLAGS_inferservice_file
;
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ initialize inferservice"
;
VLOG
(
2
)
<<
"Succ initialize inferservice"
;
int
errcode
=
bthread_set_worker_startfn
(
pthread_worker_start_fn
);
int
errcode
=
bthread_set_worker_startfn
(
pthread_worker_start_fn
);
if
(
errcode
!=
0
)
{
if
(
errcode
!=
0
)
{
...
@@ -201,7 +201,7 @@ int main(int argc, char** argv) {
...
@@ -201,7 +201,7 @@ int main(int argc, char** argv) {
<<
errcode
<<
"]"
;
<<
errcode
<<
"]"
;
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ call pthread worker start function"
;
VLOG
(
2
)
<<
"Succ call pthread worker start function"
;
if
(
Resource
::
instance
().
cube_initialize
(
FLAGS_resource_path
,
if
(
Resource
::
instance
().
cube_initialize
(
FLAGS_resource_path
,
FLAGS_resource_file
)
!=
0
)
{
FLAGS_resource_file
)
!=
0
)
{
...
@@ -209,7 +209,7 @@ int main(int argc, char** argv) {
...
@@ -209,7 +209,7 @@ int main(int argc, char** argv) {
<<
FLAGS_resource_file
;
<<
FLAGS_resource_file
;
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ initialize cube"
;
VLOG
(
2
)
<<
"Succ initialize cube"
;
#ifndef BCLOUD
#ifndef BCLOUD
...
@@ -220,7 +220,7 @@ int main(int argc, char** argv) {
...
@@ -220,7 +220,7 @@ int main(int argc, char** argv) {
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ initialize general model"
;
VLOG
(
2
)
<<
"Succ initialize general model"
;
// FATAL messages are output to stderr
// FATAL messages are output to stderr
FLAGS_stderrthreshold
=
3
;
FLAGS_stderrthreshold
=
3
;
...
@@ -230,7 +230,7 @@ int main(int argc, char** argv) {
...
@@ -230,7 +230,7 @@ int main(int argc, char** argv) {
LOG
(
ERROR
)
<<
"Failed start server and wait!"
;
LOG
(
ERROR
)
<<
"Failed start server and wait!"
;
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ start service manager"
;
VLOG
(
2
)
<<
"Succ start service manager"
;
if
(
InferServiceManager
::
instance
().
finalize
()
!=
0
)
{
if
(
InferServiceManager
::
instance
().
finalize
()
!=
0
)
{
LOG
(
ERROR
)
<<
"Failed finalize infer service manager."
;
LOG
(
ERROR
)
<<
"Failed finalize infer service manager."
;
...
@@ -248,6 +248,6 @@ int main(int argc, char** argv) {
...
@@ -248,6 +248,6 @@ int main(int argc, char** argv) {
#else
#else
google
::
ShutdownGoogleLogging
();
google
::
ShutdownGoogleLogging
();
#endif
#endif
LOG
(
INFO
)
<<
"Paddle Inference Server exit successfully!"
;
VLOG
(
2
)
<<
"Paddle Inference Server exit successfully!"
;
return
0
;
return
0
;
}
}
core/sdk-cpp/include/stub_impl.hpp
浏览文件 @
579d9597
...
@@ -35,11 +35,11 @@ int StubImpl<T, C, R, I, O>::initialize(const VariantInfo& var,
...
@@ -35,11 +35,11 @@ int StubImpl<T, C, R, I, O>::initialize(const VariantInfo& var,
}
}
_gchannel
=
init_channel
(
var
,
filter
);
_gchannel
=
init_channel
(
var
,
filter
);
LOG
(
INFO
)
<<
"Create stub with tag: "
<<
*
tag
<<
", "
<<
*
tag_value
VLOG
(
2
)
<<
"Create stub with tag: "
<<
*
tag
<<
", "
<<
*
tag_value
<<
", ep: "
<<
ep
;
<<
", ep: "
<<
ep
;
}
else
{
}
else
{
_gchannel
=
init_channel
(
var
,
NULL
);
_gchannel
=
init_channel
(
var
,
NULL
);
LOG
(
INFO
)
<<
"Create stub without tag, ep "
<<
ep
;
VLOG
(
2
)
<<
"Create stub without tag, ep "
<<
ep
;
}
}
if
(
!
_gchannel
)
{
if
(
!
_gchannel
)
{
...
@@ -143,7 +143,7 @@ int StubImpl<T, C, R, I, O>::thrd_initialize() {
...
@@ -143,7 +143,7 @@ int StubImpl<T, C, R, I, O>::thrd_initialize() {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"Succ thread initialize stub impl!"
;
VLOG
(
2
)
<<
"Succ thread initialize stub impl!"
;
return
0
;
return
0
;
}
}
...
@@ -370,7 +370,7 @@ google::protobuf::RpcChannel* StubImpl<T, C, R, I, O>::init_channel(
...
@@ -370,7 +370,7 @@ google::protobuf::RpcChannel* StubImpl<T, C, R, I, O>::init_channel(
// brpc parallel channel
// brpc parallel channel
_pchannel
=
init_pchannel
(
_channel
,
_max_channel
,
_package_size
,
chn_options
);
_pchannel
=
init_pchannel
(
_channel
,
_max_channel
,
_package_size
,
chn_options
);
if
(
_pchannel
)
{
if
(
_pchannel
)
{
LOG
(
INFO
)
<<
"Succ create parallel channel, count: "
<<
_max_channel
;
VLOG
(
2
)
<<
"Succ create parallel channel, count: "
<<
_max_channel
;
return
_pchannel
;
return
_pchannel
;
}
}
...
@@ -384,20 +384,20 @@ brpc::ParallelChannel* StubImpl<T, C, R, I, O>::init_pchannel(
...
@@ -384,20 +384,20 @@ brpc::ParallelChannel* StubImpl<T, C, R, I, O>::init_pchannel(
uint32_t
package_size
,
uint32_t
package_size
,
const
brpc
::
ChannelOptions
&
options
)
{
const
brpc
::
ChannelOptions
&
options
)
{
if
(
channel_count
<=
1
)
{
// noneed use parallel channel
if
(
channel_count
<=
1
)
{
// noneed use parallel channel
LOG
(
INFO
)
<<
"channel count <= 1, noneed use pchannel."
;
VLOG
(
2
)
<<
"channel count <= 1, noneed use pchannel."
;
return
NULL
;
return
NULL
;
}
}
_pchannel
=
butil
::
get_object
<
brpc
::
ParallelChannel
>
();
_pchannel
=
butil
::
get_object
<
brpc
::
ParallelChannel
>
();
if
(
!
_pchannel
)
{
if
(
!
_pchannel
)
{
LOG
(
FATAL
)
<<
"Failed get pchannel from object pool"
;
VLOG
(
2
)
<<
"Failed get pchannel from object pool"
;
return
NULL
;
return
NULL
;
}
}
brpc
::
ParallelChannelOptions
pchan_options
;
brpc
::
ParallelChannelOptions
pchan_options
;
pchan_options
.
timeout_ms
=
options
.
timeout_ms
;
pchan_options
.
timeout_ms
=
options
.
timeout_ms
;
if
(
_pchannel
->
Init
(
&
pchan_options
)
!=
0
)
{
if
(
_pchannel
->
Init
(
&
pchan_options
)
!=
0
)
{
LOG
(
FATAL
)
<<
"Failed init parallel channel with tmo_us: "
VLOG
(
2
)
<<
"Failed init parallel channel with tmo_us: "
<<
pchan_options
.
timeout_ms
;
<<
pchan_options
.
timeout_ms
;
return
NULL
;
return
NULL
;
}
}
...
...
core/sdk-cpp/src/abtest.cpp
浏览文件 @
579d9597
...
@@ -52,7 +52,7 @@ int WeightedRandomRender::initialize(const google::protobuf::Message& conf) {
...
@@ -52,7 +52,7 @@ int WeightedRandomRender::initialize(const google::protobuf::Message& conf) {
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ read weights list: "
<<
weights
VLOG
(
2
)
<<
"Succ read weights list: "
<<
weights
<<
", count: "
<<
_variant_weight_list
.
size
()
<<
", count: "
<<
_variant_weight_list
.
size
()
<<
", normalized: "
<<
_normalized_sum
;
<<
", normalized: "
<<
_normalized_sum
;
}
catch
(
std
::
bad_cast
&
e
)
{
}
catch
(
std
::
bad_cast
&
e
)
{
...
@@ -87,7 +87,7 @@ Variant* WeightedRandomRender::route(const VariantList& variants) {
...
@@ -87,7 +87,7 @@ Variant* WeightedRandomRender::route(const VariantList& variants) {
for
(
uint32_t
ci
=
0
;
ci
<
cand_size
;
++
ci
)
{
for
(
uint32_t
ci
=
0
;
ci
<
cand_size
;
++
ci
)
{
cur_total
+=
_variant_weight_list
[
ci
];
cur_total
+=
_variant_weight_list
[
ci
];
if
(
sample
<
cur_total
)
{
if
(
sample
<
cur_total
)
{
LOG
(
INFO
)
<<
"Sample "
<<
sample
<<
" on "
<<
ci
VLOG
(
2
)
<<
"Sample "
<<
sample
<<
" on "
<<
ci
<<
", _normalized: "
<<
_normalized_sum
<<
", _normalized: "
<<
_normalized_sum
<<
", weight: "
<<
_variant_weight_list
[
ci
];
<<
", weight: "
<<
_variant_weight_list
[
ci
];
return
variants
[
ci
];
return
variants
[
ci
];
...
...
core/sdk-cpp/src/config_manager.cpp
浏览文件 @
579d9597
...
@@ -80,7 +80,7 @@ int EndpointConfigManager::load(const std::string& sdk_desc_str) {
...
@@ -80,7 +80,7 @@ int EndpointConfigManager::load(const std::string& sdk_desc_str) {
LOG
(
ERROR
)
<<
"Failed load configure"
<<
e
.
what
();
LOG
(
ERROR
)
<<
"Failed load configure"
<<
e
.
what
();
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Success reload endpoint config file, id: "
VLOG
(
2
)
<<
"Success reload endpoint config file, id: "
<<
_current_endpointmap_id
;
<<
_current_endpointmap_id
;
return
0
;
return
0
;
}
}
...
@@ -128,7 +128,7 @@ int EndpointConfigManager::load() {
...
@@ -128,7 +128,7 @@ int EndpointConfigManager::load() {
LOG
(
ERROR
)
<<
"Failed load configure"
<<
e
.
what
();
LOG
(
ERROR
)
<<
"Failed load configure"
<<
e
.
what
();
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Success reload endpoint config file, id: "
VLOG
(
2
)
<<
"Success reload endpoint config file, id: "
<<
_current_endpointmap_id
;
<<
_current_endpointmap_id
;
return
0
;
return
0
;
}
}
...
@@ -181,7 +181,7 @@ int EndpointConfigManager::init_one_endpoint(const configure::Predictor& conf,
...
@@ -181,7 +181,7 @@ int EndpointConfigManager::init_one_endpoint(const configure::Predictor& conf,
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ load one endpoint, name: "
<<
ep
.
endpoint_name
VLOG
(
2
)
<<
"Succ load one endpoint, name: "
<<
ep
.
endpoint_name
<<
", count of variants: "
<<
ep
.
vars
.
size
()
<<
"."
;
<<
", count of variants: "
<<
ep
.
vars
.
size
()
<<
"."
;
}
catch
(
std
::
exception
&
e
)
{
}
catch
(
std
::
exception
&
e
)
{
LOG
(
ERROR
)
<<
"Exception acccurs when load endpoint conf"
LOG
(
ERROR
)
<<
"Exception acccurs when load endpoint conf"
...
@@ -258,7 +258,7 @@ int EndpointConfigManager::merge_variant(const VariantInfo& default_var,
...
@@ -258,7 +258,7 @@ int EndpointConfigManager::merge_variant(const VariantInfo& default_var,
int
EndpointConfigManager
::
parse_tag_values
(
SplitParameters
&
split
)
{
int
EndpointConfigManager
::
parse_tag_values
(
SplitParameters
&
split
)
{
split
.
tag_values
.
clear
();
split
.
tag_values
.
clear
();
if
(
!
split
.
split_tag
.
init
||
!
split
.
tag_cands_str
.
init
)
{
if
(
!
split
.
split_tag
.
init
||
!
split
.
tag_cands_str
.
init
)
{
LOG
(
WARNING
)
<<
"split info not set, skip..."
;
VLOG
(
2
)
<<
"split info not set, skip..."
;
return
0
;
return
0
;
}
}
...
...
core/sdk-cpp/src/endpoint.cpp
浏览文件 @
579d9597
...
@@ -35,7 +35,7 @@ int Endpoint::initialize(const EndpointInfo& ep_info) {
...
@@ -35,7 +35,7 @@ int Endpoint::initialize(const EndpointInfo& ep_info) {
return
-
1
;
return
-
1
;
}
}
_variant_list
.
push_back
(
var
);
_variant_list
.
push_back
(
var
);
LOG
(
INFO
)
<<
"Succ create variant: "
<<
vi
VLOG
(
2
)
<<
"Succ create variant: "
<<
vi
<<
", endpoint:"
<<
_endpoint_name
;
<<
", endpoint:"
<<
_endpoint_name
;
}
}
...
@@ -51,7 +51,7 @@ int Endpoint::thrd_initialize() {
...
@@ -51,7 +51,7 @@ int Endpoint::thrd_initialize() {
return
-
1
;
return
-
1
;
}
}
}
}
LOG
(
WARNING
)
<<
"Succ thrd initialize all vars: "
<<
var_size
;
VLOG
(
2
)
<<
"Succ thrd initialize all vars: "
<<
var_size
;
return
0
;
return
0
;
}
}
...
...
core/sdk-cpp/src/predictor_sdk.cpp
浏览文件 @
579d9597
...
@@ -25,7 +25,7 @@ int PredictorApi::register_all() {
...
@@ -25,7 +25,7 @@ int PredictorApi::register_all() {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"Succ register all components!"
;
VLOG
(
2
)
<<
"Succ register all components!"
;
return
0
;
return
0
;
}
}
...
@@ -66,7 +66,7 @@ int PredictorApi::create(const std::string & api_desc_str) {
...
@@ -66,7 +66,7 @@ int PredictorApi::create(const std::string & api_desc_str) {
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ create endpoint instance with name: "
VLOG
(
2
)
<<
"Succ create endpoint instance with name: "
<<
ep_info
.
endpoint_name
;
<<
ep_info
.
endpoint_name
;
}
}
...
@@ -101,7 +101,7 @@ int PredictorApi::create(const char* path, const char* file) {
...
@@ -101,7 +101,7 @@ int PredictorApi::create(const char* path, const char* file) {
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"endpoint name: "
<<
ep_info
.
endpoint_name
;
VLOG
(
2
)
<<
"endpoint name: "
<<
ep_info
.
endpoint_name
;
std
::
pair
<
std
::
map
<
std
::
string
,
Endpoint
*>::
iterator
,
bool
>
r
=
std
::
pair
<
std
::
map
<
std
::
string
,
Endpoint
*>::
iterator
,
bool
>
r
=
_endpoints
.
insert
(
std
::
make_pair
(
ep_info
.
endpoint_name
,
ep
));
_endpoints
.
insert
(
std
::
make_pair
(
ep_info
.
endpoint_name
,
ep
));
...
@@ -110,7 +110,7 @@ int PredictorApi::create(const char* path, const char* file) {
...
@@ -110,7 +110,7 @@ int PredictorApi::create(const char* path, const char* file) {
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ create endpoint instance with name: "
VLOG
(
2
)
<<
"Succ create endpoint instance with name: "
<<
ep_info
.
endpoint_name
;
<<
ep_info
.
endpoint_name
;
}
}
...
@@ -126,7 +126,7 @@ int PredictorApi::thrd_initialize() {
...
@@ -126,7 +126,7 @@ int PredictorApi::thrd_initialize() {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"Succ thrd initialize endpoint:"
<<
it
->
first
;
VLOG
(
2
)
<<
"Succ thrd initialize endpoint:"
<<
it
->
first
;
}
}
return
0
;
return
0
;
}
}
...
@@ -152,7 +152,7 @@ int PredictorApi::thrd_finalize() {
...
@@ -152,7 +152,7 @@ int PredictorApi::thrd_finalize() {
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ thrd finalize endpoint:"
<<
it
->
first
;
VLOG
(
2
)
<<
"Succ thrd finalize endpoint:"
<<
it
->
first
;
}
}
return
0
;
return
0
;
}
}
...
...
core/sdk-cpp/src/variant.cpp
浏览文件 @
579d9597
...
@@ -53,7 +53,7 @@ int Variant::initialize(const EndpointInfo& ep_info,
...
@@ -53,7 +53,7 @@ int Variant::initialize(const EndpointInfo& ep_info,
}
}
if
(
_stub_map
.
size
()
>
0
)
{
if
(
_stub_map
.
size
()
>
0
)
{
LOG
(
INFO
)
<<
"Initialize variants from VariantInfo"
VLOG
(
2
)
<<
"Initialize variants from VariantInfo"
<<
", stubs count: "
<<
_stub_map
.
size
();
<<
", stubs count: "
<<
_stub_map
.
size
();
return
0
;
return
0
;
}
}
...
@@ -66,7 +66,7 @@ int Variant::initialize(const EndpointInfo& ep_info,
...
@@ -66,7 +66,7 @@ int Variant::initialize(const EndpointInfo& ep_info,
}
}
_default_stub
=
stub
;
_default_stub
=
stub
;
LOG
(
INFO
)
<<
"Succ create default debug"
;
VLOG
(
2
)
<<
"Succ create default debug"
;
return
0
;
return
0
;
}
}
...
@@ -82,10 +82,10 @@ int Variant::thrd_initialize() {
...
@@ -82,10 +82,10 @@ int Variant::thrd_initialize() {
LOG
(
ERROR
)
<<
"Failed thrd initialize stub: "
<<
iter
->
first
;
LOG
(
ERROR
)
<<
"Failed thrd initialize stub: "
<<
iter
->
first
;
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"Succ thrd initialize stub:"
<<
iter
->
first
;
VLOG
(
2
)
<<
"Succ thrd initialize stub:"
<<
iter
->
first
;
}
}
LOG
(
WARNING
)
<<
"Succ thrd initialize all stubs"
;
VLOG
(
2
)
<<
"Succ thrd initialize all stubs"
;
return
0
;
return
0
;
}
}
...
...
paddle_inference/inferencer-fluid-cpu/include/fluid_cpu_engine.h
浏览文件 @
579d9597
...
@@ -138,7 +138,7 @@ class FluidCpuAnalysisCore : public FluidFamilyCore {
...
@@ -138,7 +138,7 @@ class FluidCpuAnalysisCore : public FluidFamilyCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -169,7 +169,7 @@ class FluidCpuNativeCore : public FluidFamilyCore {
...
@@ -169,7 +169,7 @@ class FluidCpuNativeCore : public FluidFamilyCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -202,7 +202,7 @@ class FluidCpuAnalysisDirCore : public FluidFamilyCore {
...
@@ -202,7 +202,7 @@ class FluidCpuAnalysisDirCore : public FluidFamilyCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -231,7 +231,7 @@ class FluidCpuNativeDirCore : public FluidFamilyCore {
...
@@ -231,7 +231,7 @@ class FluidCpuNativeDirCore : public FluidFamilyCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -240,7 +240,7 @@ class Parameter {
...
@@ -240,7 +240,7 @@ class Parameter {
public:
public:
Parameter
()
:
_row
(
0
),
_col
(
0
),
_params
(
NULL
)
{}
Parameter
()
:
_row
(
0
),
_col
(
0
),
_params
(
NULL
)
{}
~
Parameter
()
{
~
Parameter
()
{
LOG
(
INFO
)
<<
"before destroy Parameter, file_name["
<<
_file_name
<<
"]"
;
VLOG
(
2
)
<<
"before destroy Parameter, file_name["
<<
_file_name
<<
"]"
;
destroy
();
destroy
();
}
}
...
@@ -254,7 +254,7 @@ class Parameter {
...
@@ -254,7 +254,7 @@ class Parameter {
LOG
(
ERROR
)
<<
"Load "
<<
_file_name
<<
" malloc error."
;
LOG
(
ERROR
)
<<
"Load "
<<
_file_name
<<
" malloc error."
;
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"Load parameter file["
<<
_file_name
<<
"] success."
;
VLOG
(
2
)
<<
"Load parameter file["
<<
_file_name
<<
"] success."
;
return
0
;
return
0
;
}
}
...
@@ -296,7 +296,7 @@ class Parameter {
...
@@ -296,7 +296,7 @@ class Parameter {
fclose
(
fs
);
fclose
(
fs
);
fs
=
NULL
;
fs
=
NULL
;
}
}
LOG
(
INFO
)
<<
"load "
<<
_file_name
<<
" read ok."
;
VLOG
(
2
)
<<
"load "
<<
_file_name
<<
" read ok."
;
return
0
;
return
0
;
}
else
{
}
else
{
LOG
(
ERROR
)
<<
"load "
<<
_file_name
<<
" read error."
;
LOG
(
ERROR
)
<<
"load "
<<
_file_name
<<
" read error."
;
...
@@ -329,13 +329,13 @@ class SigmoidModel {
...
@@ -329,13 +329,13 @@ class SigmoidModel {
LOG
(
ERROR
)
<<
"load params sigmoid_w failed."
;
LOG
(
ERROR
)
<<
"load params sigmoid_w failed."
;
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"load sigmoid_w ["
<<
_sigmoid_w
.
_params
[
0
]
<<
"] ["
VLOG
(
2
)
<<
"load sigmoid_w ["
<<
_sigmoid_w
.
_params
[
0
]
<<
"] ["
<<
_sigmoid_w
.
_params
[
1
]
<<
"]."
;
<<
_sigmoid_w
.
_params
[
1
]
<<
"]."
;
if
(
0
!=
_sigmoid_b
.
init
(
2
,
1
,
sigmoid_b_file
)
||
0
!=
_sigmoid_b
.
load
())
{
if
(
0
!=
_sigmoid_b
.
init
(
2
,
1
,
sigmoid_b_file
)
||
0
!=
_sigmoid_b
.
load
())
{
LOG
(
ERROR
)
<<
"load params sigmoid_b failed."
;
LOG
(
ERROR
)
<<
"load params sigmoid_b failed."
;
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"load sigmoid_b ["
<<
_sigmoid_b
.
_params
[
0
]
<<
"] ["
VLOG
(
2
)
<<
"load sigmoid_b ["
<<
_sigmoid_b
.
_params
[
0
]
<<
"] ["
<<
_sigmoid_b
.
_params
[
1
]
<<
"]."
;
<<
_sigmoid_b
.
_params
[
1
]
<<
"]."
;
_exp_max_input
=
exp_max
;
_exp_max_input
=
exp_max
;
_exp_min_input
=
exp_min
;
_exp_min_input
=
exp_min
;
...
@@ -412,7 +412,7 @@ class FluidCpuWithSigmoidCore : public FluidFamilyCore {
...
@@ -412,7 +412,7 @@ class FluidCpuWithSigmoidCore : public FluidFamilyCore {
float
exp_max
=
conf
.
exp_max_input
();
float
exp_max
=
conf
.
exp_max_input
();
float
exp_min
=
conf
.
exp_min_input
();
float
exp_min
=
conf
.
exp_min_input
();
_core
->
_sigmoid_core
.
reset
(
new
SigmoidModel
);
_core
->
_sigmoid_core
.
reset
(
new
SigmoidModel
);
LOG
(
INFO
)
<<
"create sigmoid core["
<<
_core
->
_sigmoid_core
.
get
()
VLOG
(
2
)
<<
"create sigmoid core["
<<
_core
->
_sigmoid_core
.
get
()
<<
"], use count["
<<
_core
->
_sigmoid_core
.
use_count
()
<<
"]."
;
<<
"], use count["
<<
_core
->
_sigmoid_core
.
use_count
()
<<
"]."
;
ret
=
_core
->
_sigmoid_core
->
load
(
ret
=
_core
->
_sigmoid_core
->
load
(
sigmoid_w_file
,
sigmoid_b_file
,
exp_max
,
exp_min
);
sigmoid_w_file
,
sigmoid_b_file
,
exp_max
,
exp_min
);
...
@@ -444,7 +444,7 @@ class FluidCpuWithSigmoidCore : public FluidFamilyCore {
...
@@ -444,7 +444,7 @@ class FluidCpuWithSigmoidCore : public FluidFamilyCore {
LOG
(
ERROR
)
<<
"fail to clone paddle predictor: "
<<
origin_core
;
LOG
(
ERROR
)
<<
"fail to clone paddle predictor: "
<<
origin_core
;
return
-
1
;
return
-
1
;
}
}
LOG
(
INFO
)
<<
"clone sigmoid core["
<<
_core
->
_sigmoid_core
.
get
()
VLOG
(
2
)
<<
"clone sigmoid core["
<<
_core
->
_sigmoid_core
.
get
()
<<
"] use count["
<<
_core
->
_sigmoid_core
.
use_count
()
<<
"]."
;
<<
"] use count["
<<
_core
->
_sigmoid_core
.
use_count
()
<<
"]."
;
return
0
;
return
0
;
}
}
...
@@ -487,7 +487,7 @@ class FluidCpuNativeDirWithSigmoidCore : public FluidCpuWithSigmoidCore {
...
@@ -487,7 +487,7 @@ class FluidCpuNativeDirWithSigmoidCore : public FluidCpuWithSigmoidCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -520,7 +520,7 @@ class FluidCpuAnalysisDirWithSigmoidCore : public FluidCpuWithSigmoidCore {
...
@@ -520,7 +520,7 @@ class FluidCpuAnalysisDirWithSigmoidCore : public FluidCpuWithSigmoidCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
...
paddle_inference/inferencer-fluid-gpu/include/fluid_gpu_engine.h
浏览文件 @
579d9597
...
@@ -143,7 +143,7 @@ class FluidGpuAnalysisCore : public FluidFamilyCore {
...
@@ -143,7 +143,7 @@ class FluidGpuAnalysisCore : public FluidFamilyCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -173,7 +173,7 @@ class FluidGpuNativeCore : public FluidFamilyCore {
...
@@ -173,7 +173,7 @@ class FluidGpuNativeCore : public FluidFamilyCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -206,7 +206,7 @@ class FluidGpuAnalysisDirCore : public FluidFamilyCore {
...
@@ -206,7 +206,7 @@ class FluidGpuAnalysisDirCore : public FluidFamilyCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -235,7 +235,7 @@ class FluidGpuNativeDirCore : public FluidFamilyCore {
...
@@ -235,7 +235,7 @@ class FluidGpuNativeDirCore : public FluidFamilyCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -258,7 +258,7 @@ class Parameter {
...
@@ -258,7 +258,7 @@ class Parameter {
LOG
(
ERROR
)
<<
"Load "
<<
_file_name
<<
" malloc error."
;
LOG
(
ERROR
)
<<
"Load "
<<
_file_name
<<
" malloc error."
;
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"Load parameter file["
<<
_file_name
<<
"] success."
;
VLOG
(
2
)
<<
"Load parameter file["
<<
_file_name
<<
"] success."
;
return
0
;
return
0
;
}
}
...
@@ -333,13 +333,13 @@ class SigmoidModel {
...
@@ -333,13 +333,13 @@ class SigmoidModel {
LOG
(
ERROR
)
<<
"load params sigmoid_w failed."
;
LOG
(
ERROR
)
<<
"load params sigmoid_w failed."
;
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"load sigmoid_w ["
<<
_sigmoid_w
.
_params
[
0
]
<<
"] ["
VLOG
(
2
)
<<
"load sigmoid_w ["
<<
_sigmoid_w
.
_params
[
0
]
<<
"] ["
<<
_sigmoid_w
.
_params
[
1
]
<<
"]."
;
<<
_sigmoid_w
.
_params
[
1
]
<<
"]."
;
if
(
0
!=
_sigmoid_b
.
init
(
2
,
1
,
sigmoid_b_file
)
||
0
!=
_sigmoid_b
.
load
())
{
if
(
0
!=
_sigmoid_b
.
init
(
2
,
1
,
sigmoid_b_file
)
||
0
!=
_sigmoid_b
.
load
())
{
LOG
(
ERROR
)
<<
"load params sigmoid_b failed."
;
LOG
(
ERROR
)
<<
"load params sigmoid_b failed."
;
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"load sigmoid_b ["
<<
_sigmoid_b
.
_params
[
0
]
<<
"] ["
VLOG
(
2
)
<<
"load sigmoid_b ["
<<
_sigmoid_b
.
_params
[
0
]
<<
"] ["
<<
_sigmoid_b
.
_params
[
1
]
<<
"]."
;
<<
_sigmoid_b
.
_params
[
1
]
<<
"]."
;
_exp_max_input
=
exp_max
;
_exp_max_input
=
exp_max
;
_exp_min_input
=
exp_min
;
_exp_min_input
=
exp_min
;
...
@@ -491,7 +491,7 @@ class FluidGpuNativeDirWithSigmoidCore : public FluidGpuWithSigmoidCore {
...
@@ -491,7 +491,7 @@ class FluidGpuNativeDirWithSigmoidCore : public FluidGpuWithSigmoidCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
@@ -524,7 +524,7 @@ class FluidGpuAnalysisDirWithSigmoidCore : public FluidGpuWithSigmoidCore {
...
@@ -524,7 +524,7 @@ class FluidGpuAnalysisDirWithSigmoidCore : public FluidGpuWithSigmoidCore {
return
-
1
;
return
-
1
;
}
}
LOG
(
WARNING
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
VLOG
(
2
)
<<
"create paddle predictor sucess, path: "
<<
data_path
;
return
0
;
return
0
;
}
}
};
};
...
...
python/examples/fit_a_line/local_train.py
浏览文件 @
579d9597
...
@@ -32,5 +32,5 @@ for pass_id in range(30):
...
@@ -32,5 +32,5 @@ for pass_id in range(30):
fetch_list
=
[
avg_loss
])
fetch_list
=
[
avg_loss
])
serving_io
.
save_model
(
serving_io
.
save_model
(
"
serving_server_model"
,
"serving_client_conf
"
,
"
uci_housing_model"
,
"uci_housing_client
"
,
{
"x"
:
x
},
{
"
y
"
:
y_predict
},
fluid
.
default_main_program
())
{
"x"
:
x
},
{
"
price
"
:
y_predict
},
fluid
.
default_main_program
())
python/examples/imdb/local_train.py
浏览文件 @
579d9597
...
@@ -46,18 +46,17 @@ if __name__ == "__main__":
...
@@ -46,18 +46,17 @@ if __name__ == "__main__":
dataset
.
set_use_var
([
data
,
label
])
dataset
.
set_use_var
([
data
,
label
])
pipe_command
=
"python imdb_reader.py"
pipe_command
=
"python imdb_reader.py"
dataset
.
set_pipe_command
(
pipe_command
)
dataset
.
set_pipe_command
(
pipe_command
)
dataset
.
set_batch_size
(
4
)
dataset
.
set_batch_size
(
128
)
dataset
.
set_filelist
(
filelist
)
dataset
.
set_filelist
(
filelist
)
dataset
.
set_thread
(
10
)
dataset
.
set_thread
(
10
)
from
nets
import
cnn
_net
from
nets
import
bow
_net
avg_cost
,
acc
,
prediction
=
cnn
_net
(
data
,
label
,
dict_dim
)
avg_cost
,
acc
,
prediction
=
bow
_net
(
data
,
label
,
dict_dim
)
optimizer
=
fluid
.
optimizer
.
SGD
(
learning_rate
=
0.01
)
optimizer
=
fluid
.
optimizer
.
SGD
(
learning_rate
=
0.01
)
optimizer
.
minimize
(
avg_cost
)
optimizer
.
minimize
(
avg_cost
)
exe
=
fluid
.
Executor
(
fluid
.
CPUPlace
())
exe
=
fluid
.
Executor
(
fluid
.
CPUPlace
())
exe
.
run
(
fluid
.
default_startup_program
())
exe
.
run
(
fluid
.
default_startup_program
())
epochs
=
6
epochs
=
6
save_dirname
=
"cnn_model"
import
paddle_serving_client.io
as
serving_io
import
paddle_serving_client.io
as
serving_io
...
@@ -67,9 +66,5 @@ if __name__ == "__main__":
...
@@ -67,9 +66,5 @@ if __name__ == "__main__":
logger
.
info
(
"TRAIN --> pass: {}"
.
format
(
i
))
logger
.
info
(
"TRAIN --> pass: {}"
.
format
(
i
))
if
i
==
5
:
if
i
==
5
:
serving_io
.
save_model
(
"serving_server_model"
,
"serving_client_conf"
,
serving_io
.
save_model
(
"serving_server_model"
,
"serving_client_conf"
,
{
"words"
:
data
,
{
"words"
:
data
},
{
"prediction"
:
prediction
},
"label"
:
label
},
{
fluid
.
default_main_program
())
"cost"
:
avg_cost
,
"acc"
:
acc
,
"prediction"
:
prediction
},
fluid
.
default_main_program
())
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录