Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
db921ae9
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看板
未验证
提交
db921ae9
编写于
7月 22, 2023
作者:
S
sneaxiy
提交者:
GitHub
7月 22, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix launch error when PADDLE_TRAINER_ENDPOINTS is too long (#55478)
* fix new launch * fix ps uit
上级
14006e96
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
81 addition
and
8 deletion
+81
-8
python/paddle/distributed/backup_env.py
python/paddle/distributed/backup_env.py
+35
-0
python/paddle/distributed/fleet/base/role_maker.py
python/paddle/distributed/fleet/base/role_maker.py
+6
-2
python/paddle/distributed/fleet/elastic/manager.py
python/paddle/distributed/fleet/elastic/manager.py
+3
-1
python/paddle/distributed/launch/controllers/controller.py
python/paddle/distributed/launch/controllers/controller.py
+3
-0
python/paddle/distributed/launch/utils/process_context.py
python/paddle/distributed/launch/utils/process_context.py
+25
-1
python/paddle/distributed/parallel.py
python/paddle/distributed/parallel.py
+6
-3
python/paddle/fluid/executor.py
python/paddle/fluid/executor.py
+2
-1
test/legacy_test/test_run.py
test/legacy_test/test_run.py
+1
-0
未找到文件。
python/paddle/distributed/backup_env.py
0 → 100644
浏览文件 @
db921ae9
# Copyright (c) 2023 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
json
import
os
g_backup_envs
=
None
def
getenv_or_backup
(
name
,
default
=
None
):
global
g_backup_envs
if
g_backup_envs
is
None
:
backup_path
=
os
.
getenv
(
'PADDLE_BACKUP_ENV_PATH'
)
if
backup_path
is
None
:
g_backup_envs
=
{}
else
:
with
open
(
backup_path
,
'r'
)
as
f
:
g_backup_envs
=
json
.
load
(
f
)
value
=
os
.
getenv
(
name
)
if
value
is
not
None
:
return
value
else
:
return
g_backup_envs
.
get
(
name
,
default
)
python/paddle/distributed/fleet/base/role_maker.py
浏览文件 @
db921ae9
...
...
@@ -25,6 +25,8 @@ from paddle.distributed.fleet.base.private_helper_function import (
)
from
paddle.fluid
import
core
from
...backup_env
import
getenv_or_backup
__all__
=
[]
...
...
@@ -844,7 +846,9 @@ class PaddleCloudRoleMaker(RoleMakerBase):
self
.
_server_endpoints
=
self
.
_server_endpoints
.
split
(
","
)
self
.
_worker_endpoints
=
os
.
getenv
(
"PADDLE_TRAINER_ENDPOINTS"
,
None
)
self
.
_worker_endpoints
=
getenv_or_backup
(
"PADDLE_TRAINER_ENDPOINTS"
,
None
)
if
self
.
_worker_endpoints
is
not
None
:
self
.
_worker_endpoints
=
self
.
_worker_endpoints
.
split
(
","
)
else
:
...
...
@@ -1066,7 +1070,7 @@ class PaddleCloudRoleMaker(RoleMakerBase):
self
.
_training_role
=
os
.
getenv
(
"PADDLE_TRAINING_ROLE"
,
"TRAINER"
)
assert
self
.
_training_role
==
"TRAINER"
self
.
_role
=
Role
.
WORKER
self
.
_worker_endpoints
=
os
.
getenv
(
"PADDLE_TRAINER_ENDPOINTS"
)
self
.
_worker_endpoints
=
getenv_or_backup
(
"PADDLE_TRAINER_ENDPOINTS"
)
self
.
_cur_endpoint
=
os
.
getenv
(
"PADDLE_CURRENT_ENDPOINT"
)
if
self
.
_worker_endpoints
is
None
:
# back to non_distributed execution.
...
...
python/paddle/distributed/fleet/elastic/manager.py
浏览文件 @
db921ae9
...
...
@@ -25,6 +25,8 @@ import traceback
from
paddle.distributed.fleet
import
cloud_utils
,
launch_utils
from
paddle.distributed.utils.log_utils
import
get_logger
from
...backup_env
import
getenv_or_backup
logger
=
get_logger
(
"INFO"
,
"ELASTIC"
)
ELASTIC_EXIT_CODE
=
101
...
...
@@ -149,7 +151,7 @@ class ElasticManager:
self
.
np
=
len
(
self
.
trainers
.
split
(
","
))
self
.
start_port
=
int
(
os
.
getenv
(
"PADDLE_PORT"
,
"6170"
))
self
.
dist_endpoints
=
os
.
getenv
(
'DISTRIBUTED_TRAINER_ENDPOINTS'
,
''
)
trainer_endpoints
=
os
.
getenv
(
'PADDLE_TRAINER_ENDPOINTS'
,
''
)
trainer_endpoints
=
getenv_or_backup
(
'PADDLE_TRAINER_ENDPOINTS'
,
''
)
self
.
trainer_endpoints_list
=
trainer_endpoints
.
split
(
","
)
else
:
self
.
trainers
=
args
.
ips
or
os
.
getenv
(
'PADDLE_TRAINERS'
,
''
)
...
...
python/paddle/distributed/launch/controllers/controller.py
浏览文件 @
db921ae9
...
...
@@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
copy
import
os
import
signal
import
sys
...
...
@@ -244,6 +245,8 @@ class Controller(ControllerBase):
is_init
=
False
,
):
if
not
container
:
envs
=
copy
.
deepcopy
(
envs
)
envs
[
'PADDLE_LOG_DIR'
]
=
str
(
os
.
path
.
abspath
(
self
.
ctx
.
args
.
log_dir
))
container
=
self
.
new_container
(
entrypoint
=
entrypoint
,
envs
=
envs
,
out
=
log_file
,
err
=
log_file
)
...
...
python/paddle/distributed/launch/utils/process_context.py
浏览文件 @
db921ae9
...
...
@@ -12,12 +12,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
json
import
os
import
signal
import
subprocess
import
sys
import
time
LIMIT_LEN_ENVS
=
[
"TRAINER_IP_PORT_LIST"
,
"PADDLE_TRAINER_ENDPOINTS"
]
class
ProcessContext
:
def
__init__
(
...
...
@@ -42,9 +45,30 @@ class ProcessContext:
def
_start
(
self
):
pre_fn
=
os
.
setsid
if
self
.
_group
else
None
log_dir
=
self
.
_env
[
"PADDLE_LOG_DIR"
]
os
.
makedirs
(
log_dir
,
exist_ok
=
True
)
rank
=
self
.
_env
.
get
(
"PADDLE_TRAINER_ID"
)
if
rank
is
not
None
:
rank
=
int
(
rank
)
backup_env_path
=
str
(
os
.
path
.
join
(
log_dir
,
f
'backup_env.
{
rank
}
.json'
)
)
envs
=
{
"PADDLE_BACKUP_ENV_PATH"
:
backup_env_path
}
max_len
=
int
(
os
.
getenv
(
'PADDLE_ENV_LIMIT_LEN'
,
48000
))
for
k
,
v
in
self
.
_env
.
items
():
if
k
not
in
LIMIT_LEN_ENVS
or
len
(
v
)
<
max_len
:
envs
[
k
]
=
v
with
open
(
backup_env_path
,
'w'
)
as
f
:
json
.
dump
(
dict
(
self
.
_env
),
f
,
indent
=
4
,
sort_keys
=
True
)
else
:
envs
=
self
.
_env
self
.
_proc
=
subprocess
.
Popen
(
self
.
_cmd
,
env
=
self
.
_env
,
env
=
envs
,
stdout
=
self
.
_stdout
,
stderr
=
self
.
_stderr
,
preexec_fn
=
self
.
_preexec_fn
or
pre_fn
,
...
...
python/paddle/distributed/parallel.py
浏览文件 @
db921ae9
...
...
@@ -56,6 +56,7 @@ from paddle.nn.layer import layers
from
paddle.utils
import
deprecated
from
.
import
parallel_helper
from
.backup_env
import
getenv_or_backup
__all__
=
[]
...
...
@@ -704,7 +705,7 @@ class ParallelEnv:
selected_xpus
=
os
.
getenv
(
"FLAGS_selected_xpus"
,
"0"
).
split
(
","
)
self
.
_device_id
=
int
(
selected_xpus
[
0
])
self
.
_trainer_endpoints
=
os
.
getenv
(
self
.
_trainer_endpoints
=
getenv_or_backup
(
"PADDLE_TRAINER_ENDPOINTS"
,
""
).
split
(
","
)
self
.
_current_endpoint
=
os
.
getenv
(
"PADDLE_CURRENT_ENDPOINT"
,
""
)
...
...
@@ -878,7 +879,7 @@ def _is_cpuonly(backend):
def
_check_var_exists
(
var_name
):
var
=
os
.
environ
.
get
(
var_name
,
None
)
var
=
getenv_or_backup
(
var_name
,
None
)
if
var
is
None
:
raise
ValueError
(
"paddle.distributed initialize error, "
...
...
@@ -1060,7 +1061,9 @@ def init_parallel_env():
if
endpoints
is
None
:
endpoints
=
os
.
getenv
(
"PADDLE_MASTER"
,
None
)
if
endpoints
is
None
:
endpoints
=
os
.
getenv
(
"PADDLE_TRAINER_ENDPOINTS"
).
split
(
','
)[
0
]
endpoints
=
getenv_or_backup
(
"PADDLE_TRAINER_ENDPOINTS"
).
split
(
','
)[
0
]
assert
endpoints
,
(
"The environment variable 'MASTER_ADDR' and 'MASTER_PORT' "
"must be specified, for example 'export MASTER_ADDR=127.0.0.1' "
...
...
python/paddle/fluid/executor.py
浏览文件 @
db921ae9
...
...
@@ -525,8 +525,9 @@ def _to_name_str(var):
def
_prepare_fleet_executor
():
from
..distributed.fleet.proto
import
fleet_executor_desc_pb2
from
..distributed.backup_env
import
getenv_or_backup
trainer_endpoints_str
=
os
.
getenv
(
"PADDLE_TRAINER_ENDPOINTS"
,
""
)
trainer_endpoints_str
=
getenv_or_backup
(
"PADDLE_TRAINER_ENDPOINTS"
,
""
)
trainer_endpoints
=
trainer_endpoints_str
.
split
(
','
)
fleet_exe_desc
=
fleet_executor_desc_pb2
.
FleetExecutorDesc
()
cur_rank
=
int
(
os
.
getenv
(
"PADDLE_TRAINER_ID"
,
0
))
...
...
test/legacy_test/test_run.py
浏览文件 @
db921ae9
...
...
@@ -55,6 +55,7 @@ def get_files(pth, prefix):
if
isfile
(
join
(
pth
,
f
))
and
not
f
.
endswith
(
'gpu.log'
)
and
not
f
.
startswith
(
'envlog'
)
and
not
f
.
startswith
(
'backup_env'
)
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录