Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
46b73e6c
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看板
未验证
提交
46b73e6c
编写于
12月 01, 2020
作者:
S
ShenLiang
提交者:
GitHub
12月 01, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Change the api of DataParallel and Fleet (#29224)
上级
73e51a17
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
81 addition
and
27 deletion
+81
-27
paddle/fluid/framework/distributed_strategy.proto
paddle/fluid/framework/distributed_strategy.proto
+1
-0
python/paddle/distributed/fleet/base/distributed_strategy.py
python/paddle/distributed/fleet/base/distributed_strategy.py
+27
-0
python/paddle/distributed/fleet/base/fleet_base.py
python/paddle/distributed/fleet/base/fleet_base.py
+37
-19
python/paddle/fluid/dygraph/parallel.py
python/paddle/fluid/dygraph/parallel.py
+9
-8
python/paddle/fluid/tests/unittests/test_fleet_distributed_strategy.py
.../fluid/tests/unittests/test_fleet_distributed_strategy.py
+7
-0
未找到文件。
paddle/fluid/framework/distributed_strategy.proto
浏览文件 @
46b73e6c
...
...
@@ -135,6 +135,7 @@ message DistributedStrategy {
optional
bool
adaptive_localsgd
=
24
[
default
=
false
];
optional
bool
fp16_allreduce
=
25
[
default
=
false
];
optional
bool
sharding
=
26
[
default
=
false
];
optional
float
last_comm_group_size_MB
=
27
[
default
=
1
];
optional
RecomputeConfig
recompute_configs
=
101
;
optional
AMPConfig
amp_configs
=
102
;
...
...
python/paddle/distributed/fleet/base/distributed_strategy.py
浏览文件 @
46b73e6c
...
...
@@ -18,6 +18,7 @@ from paddle.fluid.framework import Variable, set_flags, core
from
paddle.fluid.wrapped_decorator
import
wrap_decorator
import
google.protobuf.text_format
import
google.protobuf
from
paddle.fluid.framework
import
dygraph_only
__all__
=
[
"DistributedStrategy"
]
...
...
@@ -555,6 +556,32 @@ class DistributedStrategy(object):
else
:
print
(
"WARNING: fuse_grad_size_in_MB should have value of int type"
)
@
property
def
last_comm_group_size_MB
(
self
):
"""
Specifying the size of gradient to fuse in Mega-Bytes when
the last group of each batch communicates. Making the last group
small is useful to improve performance.
Default value: 1
Examples:
.. code-block:: python
import paddle.distributed.fleet as fleet
strategy = fleet.DistributedStrategy()
strategy.last_comm_group_size_MB = 2
"""
return
self
.
strategy
.
last_comm_group_size_MB
@
last_comm_group_size_MB
.
setter
@
is_strict_auto
def
last_comm_group_size_MB
(
self
,
value
):
if
value
>
0
:
self
.
strategy
.
last_comm_group_size_MB
=
value
else
:
raise
ValueError
(
"last_comm_group_size_MB should be greater than 0"
)
@
property
def
_fuse_grad_size_in_TFLOPS
(
self
):
return
self
.
strategy
.
fuse_grad_size_in_TFLOPS
...
...
python/paddle/distributed/fleet/base/fleet_base.py
浏览文件 @
46b73e6c
...
...
@@ -92,12 +92,11 @@ class Fleet(object):
import paddle
paddle.enable_static()
import paddle.distributed.fleet as fleet
fleet.init()
strategy = fleet.DistributedStrategy()
fleet.init(strategy)
optimizer = paddle.optimizer.SGD(learning_rate=0.001)
optimizer = fleet.distributed_optimizer(optimizer
, strategy=strategy
)
optimizer = fleet.distributed_optimizer(optimizer)
if fleet.is_first_worker():
print("this is first worker")
...
...
@@ -127,7 +126,7 @@ class Fleet(object):
self
.
_util
=
None
self
.
_context
=
{}
def
init
(
self
,
role_maker
=
None
,
is_collective
=
False
):
def
init
(
self
,
role_maker
=
None
,
is_collective
=
False
,
strategy
=
None
):
"""
Initialize role_maker in Fleet.
...
...
@@ -142,6 +141,10 @@ class Fleet(object):
is_collective (Boolean, optional): A ``Boolean`` variable determines whether the program
runs on the CPU or GPU. False means set distributed training using CPU, and True means
GPU.The default value is False.The default value is False.
strategy (DistributedStrategy): Extra properties for distributed training.
For details, please refer to paddle.distributed.fleet.DistributedStrategy. Default: None.
Returns:
None
...
...
@@ -167,6 +170,14 @@ class Fleet(object):
role = fleet.PaddleCloudRoleMaker()
fleet.init(role)
Examples4:
.. code-block:: python
import paddle.distributed.fleet as fleet
strategy = fleet.DistributedStrategy()
fleet.init(strategy)
"""
if
role_maker
is
None
:
...
...
@@ -209,6 +220,10 @@ class Fleet(object):
else
:
paddle
.
distributed
.
init_parallel_env
()
if
strategy
is
None
:
strategy
=
DistributedStrategy
()
self
.
_user_defined_strategy
=
copy
.
deepcopy
(
strategy
)
def
is_first_worker
(
self
):
"""
Check whether the node is the first instance of worker.
...
...
@@ -575,7 +590,11 @@ class Fleet(object):
Args:
optimizer(Optimizer): The executor to run for init server.
strategy(DistributedStrategy): Extra properties for distributed optimizer.
strategy(DistributedStrategy): Extra properties for distributed optimizer.
It is recommended to use DistributedStrategy in fleet.init(). The strategy
here is for compatibility. If the strategy in fleet.distributed_optimizer()
is not None, then it will overwrite the DistributedStrategy in fleet.init(),
which will take effect in distributed training.
Returns:
Fleet: instance of fleet.
...
...
@@ -594,27 +613,25 @@ class Fleet(object):
"""
self
.
user_defined_optimizer
=
optimizer
if
strategy
==
None
:
strategy
=
DistributedStrategy
()
if
strategy
is
not
None
:
warnings
.
warn
(
"It is recommended to pass in DistributedStrategy"
"in fleet.init. The strategy here is for compatibility."
"If the `strategy` in fleet.distributed_optimizer() is"
"not None, then it will overwrite the DistributedStrategy in fleet.init(),"
"which will take effect in distributed training."
)
self
.
_user_defined_strategy
=
copy
.
deepcopy
(
strategy
)
self
.
_user_defined_strategy
=
copy
.
deepcopy
(
strategy
)
self
.
_context
=
{}
return
self
@
dygraph_only
def
distributed_model
(
self
,
model
,
group_size_limits
=
25
,
small_group_size
=
1
):
def
distributed_model
(
self
,
model
):
"""
Return distributed data parallel model (Only work in dygraph mode)
Args:
model (Layer): the user-defind model which inherits Layer.
group_size_limits(int, optional): It is up limited memory size(MB) of one group
parameters' gradient which is the input of communication
calling(e.g NCCLAllReduce). Default: 25.
small_group_size(int, optional): It is up limited memory size(MB) of last group in communication
calling. Making the last group small is useful to
improve performance. Default: 1.
Returns:
distributed data parallel model which inherits Layer.
...
...
@@ -667,8 +684,9 @@ class Fleet(object):
assert
model
is
not
None
self
.
model
=
paddle
.
DataParallel
(
model
,
group_size_limits
=
group_size_limits
,
small_group_size
=
small_group_size
)
comm_buffer_size
=
self
.
_user_defined_strategy
.
fuse_grad_size_in_MB
,
last_comm_buffer_size
=
self
.
_user_defined_strategy
.
last_comm_group_size_MB
)
return
self
.
model
@
dygraph_only
...
...
python/paddle/fluid/dygraph/parallel.py
浏览文件 @
46b73e6c
...
...
@@ -309,11 +309,11 @@ class DataParallel(layers.Layer):
layers(Layer): The module that should be executed by data parallel.
strategy(ParallelStrategy, optional): (deprecated) The strategy of data parallelism,
contains environment configuration related to parallel execution. Default: None.
group_size_limits(int, optional): It is up limited memory size(MB) of one group
comm_buffer_size(int, optional): It limits the memory size(MB) of one buffer
parameters' gradient which is the input of communication
calling(e.g NCCLAllReduce). Default: 25.
small_group_size(int, optional): It is up limited memory size(MB) of last group
in communication
calling. Making the last
group
small is useful to
last_comm_buffer_size(float, optional): It limits memory size(MB) of last buffer
in communication
calling. Making the last
communication buffer size
small is useful to
improve performance. Default: 1.
Returns:
...
...
@@ -369,8 +369,8 @@ class DataParallel(layers.Layer):
def
__init__
(
self
,
layers
,
strategy
=
None
,
group_size_limits
=
25
,
small_group
_size
=
1
):
comm_buffer_size
=
25
,
last_comm_buffer
_size
=
1
):
super
(
DataParallel
,
self
).
__init__
(
layers
.
full_name
()
+
"_data_parallel"
)
...
...
@@ -386,12 +386,13 @@ class DataParallel(layers.Layer):
self
.
_strategy
=
_build_default_parallel_strategy
()
if
self
.
_strategy
.
nranks
>
1
:
self
.
group_size_limits
=
int
(
group_size_limits
*
1024
*
1024
)
self
.
comm_buffer_size
=
int
(
comm_buffer_size
*
1024
*
1024
)
# NOTE(shenliang03): We can set environment variables to control
# the size of the group, Default: 1MB. The role of this small group is:
# when the last group allreduce, the overlap cannot work. Making the
# the last group small is useful to improve performance.
self
.
small_group_size
=
int
(
small_group_size
*
1024
*
1024
)
self
.
last_comm_buffer_size
=
int
(
last_comm_buffer_size
*
1024
*
1024
)
self
.
init_reducer
()
else
:
warnings
.
warn
(
...
...
@@ -431,7 +432,7 @@ class DataParallel(layers.Layer):
self
.
group_indices
=
core
.
assign_group_by_size
(
trainable_parameters
,
is_sparse_gradient
,
[
self
.
small_group_size
,
self
.
group_size_limits
])
[
self
.
last_comm_buffer_size
,
self
.
comm_buffer_size
])
assert
parallel_helper
.
__parallel_ctx__clz__
is
not
None
,
\
"ParallelContext must be initialized before. You should use init_parallel_env() before"
\
...
...
python/paddle/fluid/tests/unittests/test_fleet_distributed_strategy.py
浏览文件 @
46b73e6c
...
...
@@ -169,6 +169,13 @@ class TestStrategyConfig(unittest.TestCase):
strategy
.
fuse_grad_size_in_MB
=
"40"
self
.
assertEqual
(
strategy
.
fuse_grad_size_in_MB
,
50
)
def
test_last_comm_group_size_MB
(
self
):
strategy
=
paddle
.
distributed
.
fleet
.
DistributedStrategy
()
strategy
.
last_comm_group_size_MB
=
50
self
.
assertEqual
(
strategy
.
last_comm_group_size_MB
,
50
)
with
self
.
assertRaises
(
ValueError
):
strategy
.
last_comm_group_size_MB
=
-
1
def
test_fuse_grad_size_in_TFLOPS
(
self
):
strategy
=
paddle
.
distributed
.
fleet
.
DistributedStrategy
()
strategy
.
_fuse_grad_size_in_TFLOPS
=
0.1
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录