Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
1a313516
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看板
提交
1a313516
编写于
6月 23, 2020
作者:
D
dongdaxiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor pipeline server
上级
65fc3e00
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
196 addition
and
0 deletion
+196
-0
python/pipeline/channel.py
python/pipeline/channel.py
+37
-0
python/pipeline/operator.py
python/pipeline/operator.py
+35
-0
python/pipeline/pipeline_server.py
python/pipeline/pipeline_server.py
+20
-0
python/pipeline/profiler.py
python/pipeline/profiler.py
+38
-0
python/pipeline/proto/pipeline_service.proto
python/pipeline/proto/pipeline_service.proto
+29
-0
python/pipeline/proto/run_codegen.py
python/pipeline/proto/run_codegen.py
+37
-0
未找到文件。
python/pipeline/channel.py
浏览文件 @
1a313516
...
...
@@ -12,3 +12,40 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# pylint: disable=doc-string-missing
import
threading
import
multiprocessing
import
multiprocessing.queues
import
sys
if
sys
.
version_info
.
major
==
2
:
import
Queue
elif
sys
.
version_info
.
major
==
3
:
import
queue
as
Queue
else
:
raise
Exception
(
"Error Python version"
)
class
ChannelDataEcode
(
enum
.
Enum
):
OK
=
0
TIMEOUT
=
1
NOT_IMPLEMENTED
=
2
TYPE_ERROR
=
3
RPC_PACKAGE_ERROR
=
4
UNKNOW
=
5
class
ChannelDataType
(
enum
.
Enum
):
DICT
=
0
CHANNEL_NPDATA
=
1
ERROR
=
2
class
ChannelData
(
object
):
pass
class
ThreadChannel
(
Queue
.
Queue
):
pass
class
ProcessChannel
(
multiprocessing
.
queues
.
Queue
):
pass
python/pipeline/operator.py
浏览文件 @
1a313516
...
...
@@ -12,3 +12,38 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# pylint: disable=doc-string-missing
class
Op
(
object
):
def
__init__
(
self
,
name
=
""
,
input_ops
=
[],
server_endpoints
=
[],
concurrency
=
1
,
timeout
=-
1
,
retry
=
1
):
pass
def
_get_input_channel
(
self
):
pass
def
_get_output_channel
(
self
):
pass
def
preprocess
(
self
,
input_dict
):
pass
def
process
(
self
,
feed_dict
):
pass
def
postprocess
(
self
,
fetch_dict
):
pass
def
stop
(
self
):
pass
def
start_with_process
(
self
):
pass
def
start_with_thread
(
self
):
pass
python/pipeline/pipeline_server.py
浏览文件 @
1a313516
...
...
@@ -12,3 +12,23 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# pylint: disable=doc-string-missing
class
PipelineService
(
pipeline_service_pb2_grpc
.
PipelineServiceServicer
):
def
__init__
(
self
,
in_channel
,
out_channel
,
retry
=
2
):
super
(
PipelineService
,
self
).
__init__
()
pass
class
PipelineServer
(
object
):
def
__init__
(
self
):
pass
def
set_response_op
(
self
,
response_op
):
pass
def
prepare_server
(
self
,
yml_file
):
pass
def
run_server
(
self
):
pass
python/pipeline/profiler.py
浏览文件 @
1a313516
...
...
@@ -12,3 +12,41 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# pylint: disable=doc-string-missing
class
TimeProfiler
(
object
):
def
__init__
(
self
):
self
.
_pid
=
os
.
getpid
()
self
.
_print_head
=
'PROFILE
\t
pid:{}
\t
'
.
format
(
self
.
_pid
)
self
.
_time_record
=
Queue
.
Queue
()
self
.
_enable
=
False
def
enable
(
self
,
enable
):
self
.
_enable
=
enable
def
record
(
self
,
name_with_tag
):
if
self
.
_enable
is
False
:
return
name_with_tag
=
name_with_tag
.
split
(
"_"
)
tag
=
name_with_tag
[
-
1
]
name
=
'_'
.
join
(
name_with_tag
[:
-
1
])
self
.
_time_record
.
put
((
name
,
tag
,
int
(
round
(
time
.
time
()
*
1000000
))))
def
print_profile
(
self
):
if
self
.
_enable
is
False
:
return
print_str
=
self
.
_print_head
tmp
=
{}
while
not
self
.
_time_record
.
empty
():
name
,
tag
,
timestamp
=
self
.
_time_record
.
get
()
if
name
in
tmp
:
ptag
,
ptimestamp
=
tmp
.
pop
(
name
)
print_str
+=
"{}_{}:{} "
.
format
(
name
,
ptag
,
ptimestamp
)
print_str
+=
"{}_{}:{} "
.
format
(
name
,
tag
,
timestamp
)
else
:
tmp
[
name
]
=
(
tag
,
timestamp
)
print_str
+=
"
\n
"
sys
.
stderr
.
write
(
print_str
)
for
name
,
item
in
tmp
.
items
():
tag
,
timestamp
=
item
self
.
_time_record
.
put
((
name
,
tag
,
timestamp
))
python/pipeline/proto/pipeline_service.proto
0 → 100644
浏览文件 @
1a313516
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax
=
"proto2"
;
message
Request
{
repeated
string
key
=
1
;
repeated
string
value
=
2
;
};
message
Response
{
repeated
string
key
=
1
;
repeated
string
value
=
2
;
};
service
PipelineService
{
rpc
inference
(
Request
)
returns
(
Response
)
{}
};
python/pipeline/proto/run_codegen.py
0 → 100644
浏览文件 @
1a313516
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Copyright 2015 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Runs protoc with the gRPC plugin to generate messages and gRPC stubs."""
from
grpc_tools
import
protoc
protoc
.
main
((
''
,
'-I.'
,
'--python_out=.'
,
'--grpc_python_out=.'
,
'pipeline_service.proto'
,
))
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录