Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
e3766da6
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
e3766da6
编写于
7月 29, 2022
作者:
K
kuizhiqing
提交者:
GitHub
7月 29, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[LAUNCH] fix set args bug (#44717)
上级
5d94618d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
4 deletion
+4
-4
python/paddle/distributed/launch/context/__init__.py
python/paddle/distributed/launch/context/__init__.py
+1
-2
python/paddle/distributed/launch/controllers/collective.py
python/paddle/distributed/launch/controllers/collective.py
+2
-1
python/paddle/distributed/launch/plugins/__init__.py
python/paddle/distributed/launch/plugins/__init__.py
+1
-1
未找到文件。
python/paddle/distributed/launch/context/__init__.py
浏览文件 @
e3766da6
...
@@ -101,7 +101,6 @@ class Context(object):
...
@@ -101,7 +101,6 @@ class Context(object):
return
False
return
False
def
set_env_in_args
(
self
):
def
set_env_in_args
(
self
):
# this logic may not propre to replace args with env, but ...
for
k
,
v
in
env_args_mapping
.
items
():
for
k
,
v
in
env_args_mapping
.
items
():
if
k
in
self
.
envs
:
if
k
in
self
.
envs
:
setattr
(
self
.
args
,
v
,
type
(
getattr
(
self
.
args
,
v
))(
self
.
envs
[
k
])
)
setattr
(
self
.
args
,
v
,
self
.
envs
[
k
]
)
python/paddle/distributed/launch/controllers/collective.py
浏览文件 @
e3766da6
...
@@ -131,7 +131,8 @@ class CollectiveElasticController(CollectiveController):
...
@@ -131,7 +131,8 @@ class CollectiveElasticController(CollectiveController):
def
run
(
self
):
def
run
(
self
):
timeout
=
self
.
ctx
.
args
.
elastic_timeout
if
self
.
job
.
elastic
else
self
.
ctx
.
args
.
elastic_timeout
*
10
timeout
=
int
(
self
.
ctx
.
args
.
elastic_timeout
)
timeout
=
timeout
if
self
.
job
.
elastic
else
timeout
*
10
self
.
register
()
self
.
register
()
while
self
.
pod
.
restart
<=
self
.
ctx
.
args
.
max_restart
:
while
self
.
pod
.
restart
<=
self
.
ctx
.
args
.
max_restart
:
...
...
python/paddle/distributed/launch/plugins/__init__.py
浏览文件 @
e3766da6
...
@@ -62,7 +62,7 @@ def rewrite_host_ip(ctx):
...
@@ -62,7 +62,7 @@ def rewrite_host_ip(ctx):
def
test_mode
(
ctx
):
def
test_mode
(
ctx
):
if
ctx
.
args
.
training_script
==
'
test
'
:
if
ctx
.
args
.
training_script
==
'
run_check
'
:
ctx
.
logger
.
info
(
'Paddle Distributed Test begin...'
)
ctx
.
logger
.
info
(
'Paddle Distributed Test begin...'
)
if
int
(
ctx
.
args
.
nnodes
)
<
2
:
if
int
(
ctx
.
args
.
nnodes
)
<
2
:
ctx
.
args
.
nnodes
=
2
ctx
.
args
.
nnodes
=
2
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录