Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
b1e82031
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b1e82031
编写于
9月 20, 2022
作者:
Z
zhaoyingli
提交者:
GitHub
9月 20, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix strategy (#46256)
上级
ffd35908
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
12 addition
and
8 deletion
+12
-8
python/paddle/distributed/auto_parallel/constants.py
python/paddle/distributed/auto_parallel/constants.py
+1
-1
python/paddle/distributed/auto_parallel/engine.py
python/paddle/distributed/auto_parallel/engine.py
+4
-3
python/paddle/distributed/auto_parallel/strategy.py
python/paddle/distributed/auto_parallel/strategy.py
+5
-4
python/paddle/distributed/auto_parallel/utils.py
python/paddle/distributed/auto_parallel/utils.py
+2
-0
未找到文件。
python/paddle/distributed/auto_parallel/constants.py
浏览文件 @
b1e82031
...
...
@@ -45,7 +45,7 @@ set_field_default_config(BASE, "gradient_scale", True)
set_field_default_config
(
BASE
,
"use_cache"
,
True
)
set_field_default_config
(
BASE
,
"return_numpy"
,
True
)
set_field_default_config
(
BASE
,
"all_ranks"
,
False
)
set_field_default_config
(
BASE
,
"split_data"
,
Fals
e
)
set_field_default_config
(
BASE
,
"split_data"
,
Tru
e
)
set_field_default_config
(
BASE
,
"seed"
,
None
)
set_field_default_config
(
BASE
,
"reinit"
,
False
)
# Only for debug
...
...
python/paddle/distributed/auto_parallel/engine.py
浏览文件 @
b1e82031
...
...
@@ -978,9 +978,10 @@ class Engine:
# extract ckpts by specific model
if
isinstance
(
self
.
_model
,
paddle
.
nn
.
Layer
):
if
hasattr
(
self
.
_model
,
"gpt"
)
and
self
.
_model
.
__class__
.
__name__
==
'GPTForPretraining'
:
if
hasattr
(
self
.
_model
,
"gpt"
)
and
self
.
_model
.
__class__
.
__name__
in
[
'GPTForPretraining'
,
'GPTForPretrainingAuto'
]:
exact_ckpts
=
self
.
_model
.
gpt
.
checkpoints
else
:
exact_ckpts
=
recompute
.
checkpoints
...
...
python/paddle/distributed/auto_parallel/strategy.py
浏览文件 @
b1e82031
...
...
@@ -59,10 +59,11 @@ class BaseConfig(object):
return
result_dict
def
__repr__
(
self
):
return
yaml
.
dump
(
self
.
to_dict
(),
default_flow_style
=
False
,
sort_keys
=
True
,
indent
=
4
)
result_dict
=
self
.
to_dict
()
string
=
"{"
for
k
,
v
in
result_dict
.
items
():
string
+=
"
\"
%s
\"
:
\"
%s
\"
,"
%
(
k
,
v
)
return
string
+
"}"
def
__deepcopy__
(
self
,
memo
):
cls
=
self
.
__class__
...
...
python/paddle/distributed/auto_parallel/utils.py
浏览文件 @
b1e82031
...
...
@@ -81,6 +81,8 @@ def convert_to_dims_mapping(shard_spec, process_mesh):
for
shard
in
shard_spec
:
if
shard
is
None
:
dims_mapping
.
append
(
-
1
)
elif
process_mesh
.
topology
[
process_mesh
.
dim_names
.
index
(
shard
)]
==
1
:
dims_mapping
.
append
(
-
1
)
else
:
dims_mapping
.
append
(
process_mesh
.
dim_names
.
index
(
shard
))
return
dims_mapping
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录