Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
f3e5a5cf
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
f3e5a5cf
编写于
6月 08, 2019
作者:
G
gongweibao
提交者:
GitHub
6月 08, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Unset https_proxy and http_proxy in our launch.py (#17915)
上级
5df65e50
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
2 deletion
+7
-2
python/paddle/distributed/launch.py
python/paddle/distributed/launch.py
+6
-1
python/paddle/fluid/tests/unittests/test_launch.sh
python/paddle/fluid/tests/unittests/test_launch.sh
+1
-1
未找到文件。
python/paddle/distributed/launch.py
浏览文件 @
f3e5a5cf
...
@@ -173,7 +173,11 @@ def start_procs(args):
...
@@ -173,7 +173,11 @@ def start_procs(args):
"PADDLE_CURRENT_ENDPOINT"
:
"PADDLE_CURRENT_ENDPOINT"
:
"%s:%d"
%
(
current_node_ip
,
args
.
started_port
+
i
),
"%s:%d"
%
(
current_node_ip
,
args
.
started_port
+
i
),
"PADDLE_TRAINERS_NUM"
:
"%d"
%
nranks
,
"PADDLE_TRAINERS_NUM"
:
"%d"
%
nranks
,
"PADDLE_TRAINER_ENDPOINTS"
:
trainers_endpoints
"PADDLE_TRAINER_ENDPOINTS"
:
trainers_endpoints
,
# paddle broadcast ncclUniqueId use socket, and
# proxy maybe make trainers unreachable, so set them to ""
"http_proxy"
:
""
,
"https_proxy"
:
""
})
})
cmd
=
[
sys
.
executable
,
"-u"
,
args
.
training_script
cmd
=
[
sys
.
executable
,
"-u"
,
args
.
training_script
...
@@ -182,6 +186,7 @@ def start_procs(args):
...
@@ -182,6 +186,7 @@ def start_procs(args):
cmds
.
append
(
cmd
)
cmds
.
append
(
cmd
)
if
args
.
log_dir
is
not
None
:
if
args
.
log_dir
is
not
None
:
os
.
system
(
"mkdir -p {}"
.
format
(
args
.
log_dir
))
fn
=
open
(
"%s/workerlog.%d"
%
(
args
.
log_dir
,
i
),
"w"
)
fn
=
open
(
"%s/workerlog.%d"
%
(
args
.
log_dir
,
i
),
"w"
)
log_fns
.
append
(
fn
)
log_fns
.
append
(
fn
)
...
...
python/paddle/fluid/tests/unittests/test_launch.sh
浏览文件 @
f3e5a5cf
...
@@ -8,7 +8,7 @@ python -m paddle.distributed.launch multi_process.py
...
@@ -8,7 +8,7 @@ python -m paddle.distributed.launch multi_process.py
cluster_node_ips
=
"127.0.0.1"
cluster_node_ips
=
"127.0.0.1"
node_ip
=
"127.0.0.1"
node_ip
=
"127.0.0.1"
distributed_args
=
"--cluster_node_ips
${
cluster_node_ips
}
--node_ip
${
node_ip
}
--selected_gpus=0,1"
distributed_args
=
"--cluster_node_ips
${
cluster_node_ips
}
--node_ip
${
node_ip
}
--selected_gpus=0,1
--log_dir testlog
"
python
-m
paddle.distributed.launch
${
distributed_args
}
multi_process.py
python
-m
paddle.distributed.launch
${
distributed_args
}
multi_process.py
str1
=
"selected_gpus:0 worker_endpoints:['127.0.0.1:6170', '127.0.0.1:6171'] trainers_num:2 current_endpoint:127.0.0.1:6170 trainer_id:0"
str1
=
"selected_gpus:0 worker_endpoints:['127.0.0.1:6170', '127.0.0.1:6171'] trainers_num:2 current_endpoint:127.0.0.1:6170 trainer_id:0"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录