Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
472fd091
P
PaddleSlim
项目概览
PaddlePaddle
/
PaddleSlim
大约 1 年 前同步成功
通知
51
Star
1434
Fork
344
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
53
列表
看板
标记
里程碑
合并请求
16
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleSlim
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
53
Issue
53
列表
看板
标记
里程碑
合并请求
16
合并请求
16
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
472fd091
编写于
9月 11, 2020
作者:
C
ceci3
提交者:
GitHub
9月 11, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix sa (#429) (#451)
* fix * update connect * add uniitest
上级
c70509e4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
145 addition
and
14 deletion
+145
-14
paddleslim/common/controller_client.py
paddleslim/common/controller_client.py
+57
-14
tests/test_client_connect.py
tests/test_client_connect.py
+88
-0
未找到文件。
paddleslim/common/controller_client.py
浏览文件 @
472fd091
...
...
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
os
import
time
import
logging
import
socket
from
.log_helper
import
get_logger
...
...
@@ -31,6 +33,8 @@ class ControllerClient(object):
client_name(str): Current client name, random generate for counting client number. Default: None.
"""
START
=
True
def
__init__
(
self
,
server_ip
=
None
,
server_port
=
None
,
...
...
@@ -52,23 +56,58 @@ class ControllerClient(object):
reward(float): The reward of tokens.
iter(int): The iteration number of current client.
"""
ControllerClient
.
START
=
False
socket_client
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
socket_client
.
connect
((
self
.
server_ip
,
self
.
server_port
))
tokens
=
","
.
join
([
str
(
token
)
for
token
in
tokens
])
socket_client
.
send
(
"{}
\t
{}
\t
{}
\t
{}
\t
{}"
.
format
(
self
.
_key
,
tokens
,
reward
,
iter
,
self
.
_client_name
).
encode
())
response
=
socket_client
.
recv
(
1024
).
decode
()
if
"ok"
in
response
.
strip
(
'
\n
'
).
split
(
"
\t
"
):
return
True
errno
=
socket_client
.
connect_ex
((
self
.
server_ip
,
self
.
server_port
))
if
errno
!=
0
:
_logger
.
info
(
"Server is closed!!!"
)
os
.
_exit
(
0
)
else
:
return
False
tokens
=
","
.
join
([
str
(
token
)
for
token
in
tokens
])
socket_client
.
send
(
"{}
\t
{}
\t
{}
\t
{}
\t
{}"
.
format
(
self
.
_key
,
tokens
,
reward
,
iter
,
self
.
_client_name
).
encode
())
try
:
response
=
socket_client
.
recv
(
1024
).
decode
()
if
"ok"
in
response
.
strip
(
'
\n
'
).
split
(
"
\t
"
):
return
True
else
:
return
False
except
Exception
as
err
:
_logger
.
error
(
err
)
os
.
_exit
(
0
)
def
next_tokens
(
self
):
"""
Get next tokens.
"""
socket_client
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
socket_client
.
connect
((
self
.
server_ip
,
self
.
server_port
))
retry_cnt
=
0
if
ControllerClient
.
START
:
while
True
:
socket_client
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
errno
=
socket_client
.
connect_ex
(
(
self
.
server_ip
,
self
.
server_port
))
if
errno
!=
0
:
retry_cnt
+=
1
_logger
.
info
(
"Server is NOT ready, wait 10 second to retry"
)
time
.
sleep
(
10
)
else
:
break
if
retry_cnt
==
6
:
_logger
.
error
(
"Server is NOT ready in 1 minute, please check if it start"
)
os
.
_exit
(
errno
)
else
:
socket_client
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
errno
=
socket_client
.
connect_ex
((
self
.
server_ip
,
self
.
server_port
))
if
errno
!=
0
:
_logger
.
info
(
"Server is closed"
)
os
.
_exit
(
0
)
socket_client
.
send
(
"next_tokens"
.
encode
())
tokens
=
socket_client
.
recv
(
1024
).
decode
()
tokens
=
[
int
(
token
)
for
token
in
tokens
.
strip
(
"
\n
"
).
split
(
","
)]
...
...
@@ -79,7 +118,11 @@ class ControllerClient(object):
Request for current information.
"""
socket_client
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
socket_client
.
connect
((
self
.
server_ip
,
self
.
server_port
))
socket_client
.
send
(
"current_info"
.
encode
())
current_info
=
socket_client
.
recv
(
1024
).
decode
()
return
eval
(
current_info
)
errno
=
socket_client
.
connect_ex
((
self
.
server_ip
,
self
.
server_port
))
if
errno
!=
0
:
_logger
.
info
(
"Server is closed"
)
return
None
else
:
socket_client
.
send
(
"current_info"
.
encode
())
current_info
=
socket_client
.
recv
(
1024
).
decode
()
return
eval
(
current_info
)
tests/test_client_connect.py
0 → 100644
浏览文件 @
472fd091
# 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.
import
sys
sys
.
path
.
append
(
"../"
)
import
os
import
time
import
signal
import
unittest
import
paddle.fluid
as
fluid
from
paddleslim.nas
import
SANAS
from
paddleslim.common.controller_client
import
ControllerClient
import
numpy
as
np
from
multiprocessing
import
Process
import
socket
def
start_client
(
configs
,
addr
,
port
):
client_sanas
=
SANAS
(
configs
=
configs
,
server_addr
=
(
addr
,
port
),
save_checkpoint
=
None
,
is_server
=
False
)
for
_
in
range
(
2
):
arch
=
client_sanas
.
next_archs
()[
0
]
time
.
sleep
(
1
)
client_sanas
.
reward
(
0.1
)
def
start_server
(
configs
,
port
):
server_sanas
=
SANAS
(
configs
=
configs
,
server_addr
=
(
""
,
port
),
save_checkpoint
=
None
)
server_sanas
.
next_archs
()[
0
]
return
server_sanas
class
TestClientConnect
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
configs
=
[(
'MobileNetV2BlockSpace'
,
{
'block_mask'
:
[
0
]})]
self
.
port
=
np
.
random
.
randint
(
8337
,
8773
)
self
.
addr
=
socket
.
gethostbyname
(
socket
.
gethostname
())
def
test_client_start_first
(
self
):
p
=
Process
(
target
=
start_client
,
args
=
(
self
.
configs
,
self
.
addr
,
self
.
port
))
p
.
start
()
start_server
(
self
.
configs
,
self
.
port
)
class
TestClientConnectCase1
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
configs
=
[(
'MobileNetV2BlockSpace'
,
{
'block_mask'
:
[
0
]})]
self
.
port
=
np
.
random
.
randint
(
8337
,
8773
)
self
.
addr
=
socket
.
gethostbyname
(
socket
.
gethostname
())
def
test_client_start_first
(
self
):
p
=
Process
(
target
=
start_client
,
args
=
(
self
.
configs
,
self
.
addr
,
self
.
port
))
p
.
start
()
time
.
sleep
(
60
)
server_sanas
=
start_server
(
self
.
configs
,
self
.
port
)
os
.
kill
(
os
.
getpid
(),
0
)
class
TestClientConnectCase2
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
port
=
np
.
random
.
randint
(
8337
,
8773
)
self
.
addr
=
socket
.
gethostbyname
(
socket
.
gethostname
())
def
test_request_current_info
(
self
):
client
=
ControllerClient
(
self
.
addr
,
self
.
port
)
client
.
request_current_info
()
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录