Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
447d970d
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看板
提交
447d970d
编写于
4月 24, 2022
作者:
T
TeslaZhao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update confict
上级
e90079ae
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
7 deletion
+6
-7
core/predictor/framework/cache.cpp
core/predictor/framework/cache.cpp
+1
-1
core/predictor/framework/server.cpp
core/predictor/framework/server.cpp
+4
-0
python/paddle_serving_server/serve.py
python/paddle_serving_server/serve.py
+1
-6
未找到文件。
core/predictor/framework/cache.cpp
浏览文件 @
447d970d
...
...
@@ -55,7 +55,7 @@ int CubeCache::reload_data(const std::string& cache_path) {
// loading data from cache files
if
(
stat
(
cache_path
.
c_str
(),
&
st
)
<
0
||
!
S_ISDIR
(
st
.
st_mode
))
{
LOG
(
ERROR
)
<<
"invalid cache path "
<<
cache_path
;
LOG
(
WARNING
)
<<
"No cube cache directory "
<<
cache_path
<<
" provided, ignore it"
;
return
-
1
;
}
if
((
dp
=
opendir
(
cache_path
.
c_str
()))
==
nullptr
)
{
...
...
core/predictor/framework/server.cpp
浏览文件 @
447d970d
...
...
@@ -96,6 +96,10 @@ int ServerManager::start_and_wait() {
LOG
(
ERROR
)
<<
"Failed to start Paddle Inference Server"
;
return
-
1
;
}
std
::
cout
<<
"C++ Serving service started successfully!"
<<
std
::
endl
;
LOG
(
INFO
)
<<
"C++ Serving service started successfully!"
;
_server
.
RunUntilAskedToQuit
();
ServerManager
::
stop_reloader
();
...
...
python/paddle_serving_server/serve.py
浏览文件 @
447d970d
...
...
@@ -233,7 +233,7 @@ def serve_args():
"--request_cache_size"
,
type
=
int
,
default
=
0
,
help
=
"
Port of the Prometheus
"
)
help
=
"
Max request cache size
"
)
parser
.
add_argument
(
"--use_dist_model"
,
default
=
False
,
...
...
@@ -274,11 +274,6 @@ def serve_args():
default
=
False
,
action
=
"store_true"
,
help
=
"The master serving of distributed inference"
)
parser
.
add_argument
(
"--request_cache_size"
,
type
=
int
,
default
=
0
,
help
=
"Port of the Prometheus"
)
parser
.
add_argument
(
"--min_subgraph_size"
,
type
=
str
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录