Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
e931c7ba
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
e931c7ba
编写于
11月 26, 2020
作者:
W
WangXi
提交者:
GitHub
11月 26, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix multi nccl comm & wait server ready (#28663)
上级
e7caf3b8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
26 addition
and
8 deletion
+26
-8
python/paddle/distributed/fleet/meta_optimizers/graph_execution_optimizer.py
...ibuted/fleet/meta_optimizers/graph_execution_optimizer.py
+20
-8
python/paddle/fluid/tests/unittests/test_fleet_graph_execution_meta_optimizer.py
...ts/unittests/test_fleet_graph_execution_meta_optimizer.py
+6
-0
未找到文件。
python/paddle/distributed/fleet/meta_optimizers/graph_execution_optimizer.py
浏览文件 @
e931c7ba
...
...
@@ -11,6 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
import
copy
import
paddle
from
paddle.fluid.framework
import
core
from
paddle.fluid
import
compiler
...
...
@@ -51,13 +52,21 @@ class GraphExecutionOptimizer(MetaOptimizerBase):
# should fix the variable
def
_setup_nccl_op
(
self
,
startup_program
,
main_program
,
build_strategy
):
trainer_endpoints
=
self
.
role_maker
.
_get_trainer_endpoints
()
trainers
=
trainer_endpoints
other_trainers
=
copy
.
copy
(
trainer_endpoints
)
trainer_id
=
self
.
role_maker
.
_worker_index
()
current_endpoint
=
self
.
role_maker
.
_get_trainer_endpoints
()[
trainer_id
]
other_trainers
.
remove
(
current_endpoint
)
trainer_endpoints_env
=
","
.
join
(
trainer_endpoints
)
trainers_num
=
self
.
role_maker
.
_worker_num
()
if
trainer_id
==
0
:
wait_server_ready
(
other_trainers
)
nccl_id_var
=
startup_program
.
global_block
().
create_var
(
name
=
"NCCLID"
,
persistable
=
True
,
type
=
core
.
VarDesc
.
VarType
.
RAW
)
for
i
in
range
(
1
,
build_strategy
.
nccl_comm_num
):
startup_program
.
global_block
().
create_var
(
name
=
"NCCLID_{}"
.
format
(
i
),
...
...
@@ -90,7 +99,6 @@ class GraphExecutionOptimizer(MetaOptimizerBase):
})
def
_try_to_compile
(
self
,
startup_program
,
main_program
,
loss
):
import
copy
dist_strategy
=
self
.
user_defined_strategy
local_build_strategy
=
paddle
.
fluid
.
BuildStrategy
()
local_build_strategy
.
enable_sequential_execution
=
\
...
...
@@ -148,13 +156,12 @@ class GraphExecutionOptimizer(MetaOptimizerBase):
sync_allreduce
=
dist_strategy
.
sync_nccl_allreduce
if
sync_allreduce
:
exe_strategy
.
num_threads
=
local_build_strategy
.
nccl_comm_num
+
1
if
local_build_strategy
.
use_hierarchical_allreduce
:
exe_strategy
.
num_threads
=
2
*
local_build_strategy
.
nccl_comm_num
+
1
if
exe_strategy
.
num_threads
>
4
:
exe_strategy
.
num_threads
=
max
(
local_build_strategy
.
nccl_comm_num
+
1
,
exe_strategy
.
num_threads
)
if
local_build_strategy
.
nccl_comm_num
>
1
:
logging
.
warn
(
"if you use hierachical_allreduce or "
"with multi nccl comm, please set distributed_strategy.sync_nccl_allreduce=False"
"nccl_comm_num > 1, you may need to set sync_nccl_allreduce=False to ensure that different nccl comms can overlap"
)
sync_batch_norm
=
local_build_strategy
.
sync_batch_norm
...
...
@@ -167,6 +174,11 @@ class GraphExecutionOptimizer(MetaOptimizerBase):
"set num_threads=1, nccl_comm_num=1, hierachical_allreduce=False."
)
# NOTE. compatible with compiler, otherwise these values will be overwritten by compiler
main_program
.
_nccl_comm_num
=
local_build_strategy
.
nccl_comm_num
main_program
.
_use_hierarchical_allreduce
=
local_build_strategy
.
use_hierarchical_allreduce
main_program
.
_hierarchical_allreduce_inter_nranks
=
local_build_strategy
.
hierarchical_allreduce_inter_nranks
# TODO(guru4elephant): should be an independent optimizer
self
.
_setup_nccl_op
(
startup_program
,
main_program
,
local_build_strategy
)
...
...
python/paddle/fluid/tests/unittests/test_fleet_graph_execution_meta_optimizer.py
浏览文件 @
e931c7ba
...
...
@@ -75,6 +75,9 @@ class TestFleetGraphExecutionMetaOptimizer(unittest.TestCase):
optimizer
,
strategy
=
strategy
)
optimizer
.
minimize
(
avg_cost
)
exe
=
paddle
.
fluid
.
Executor
(
place
=
paddle
.
fluid
.
CPUPlace
())
exe
.
run
(
paddle
.
fluid
.
default_startup_program
())
proc_a
=
launch_func
(
node_func
,
node_a
)
proc_a
.
start
()
proc_b
=
launch_func
(
node_func
,
node_b
)
...
...
@@ -197,6 +200,9 @@ class TestFleetGraphExecutionMetaOptimizer(unittest.TestCase):
optimizer
,
strategy
=
strategy
)
optimizer
.
minimize
(
avg_cost
)
exe
=
paddle
.
fluid
.
Executor
(
place
=
paddle
.
fluid
.
CPUPlace
())
exe
.
run
(
paddle
.
fluid
.
default_startup_program
())
proc_a
=
launch_func
(
node_func
,
node_a
)
proc_a
.
start
()
proc_b
=
launch_func
(
node_func
,
node_b
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录