Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
620698e7
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看板
提交
620698e7
编写于
6月 19, 2018
作者:
T
tangwei12
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bug fux
上级
1296d96e
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
14 addition
and
13 deletion
+14
-13
paddle/fluid/operators/save_op.cc
paddle/fluid/operators/save_op.cc
+12
-11
python/paddle/fluid/io.py
python/paddle/fluid/io.py
+1
-1
python/paddle/fluid/transpiler/distribute_transpiler.py
python/paddle/fluid/transpiler/distribute_transpiler.py
+1
-1
未找到文件。
paddle/fluid/operators/save_op.cc
浏览文件 @
620698e7
...
@@ -69,15 +69,6 @@ class SaveOp : public framework::OperatorBase {
...
@@ -69,15 +69,6 @@ class SaveOp : public framework::OperatorBase {
private:
private:
void
RunImpl
(
const
framework
::
Scope
&
scope
,
void
RunImpl
(
const
framework
::
Scope
&
scope
,
const
platform
::
Place
&
place
)
const
override
{
const
platform
::
Place
&
place
)
const
override
{
auto
filename
=
Attr
<
std
::
string
>
(
"file_path"
);
auto
overwrite
=
Attr
<
bool
>
(
"overwrite"
);
if
(
FileExists
(
filename
)
&&
!
overwrite
)
{
PADDLE_THROW
(
"%s is existed, cannot save to it when overwrite=false"
,
filename
,
overwrite
);
}
MkDirRecursively
(
DirName
(
filename
).
c_str
());
auto
iname
=
Input
(
"X"
);
auto
iname
=
Input
(
"X"
);
auto
*
var
=
scope
.
FindVar
(
iname
);
auto
*
var
=
scope
.
FindVar
(
iname
);
...
@@ -85,7 +76,7 @@ class SaveOp : public framework::OperatorBase {
...
@@ -85,7 +76,7 @@ class SaveOp : public framework::OperatorBase {
iname
);
iname
);
if
(
var
->
IsType
<
framework
::
LoDTensor
>
())
{
if
(
var
->
IsType
<
framework
::
LoDTensor
>
())
{
SaveLodTensor
(
filename
,
place
,
var
);
SaveLodTensor
(
place
,
var
);
}
else
if
(
var
->
IsType
<
framework
::
SelectedRows
>
())
{
}
else
if
(
var
->
IsType
<
framework
::
SelectedRows
>
())
{
SaveSelectedRows
(
scope
,
place
,
var
);
SaveSelectedRows
(
scope
,
place
,
var
);
}
else
{
}
else
{
...
@@ -96,8 +87,18 @@ class SaveOp : public framework::OperatorBase {
...
@@ -96,8 +87,18 @@ class SaveOp : public framework::OperatorBase {
}
}
}
}
void
SaveLodTensor
(
const
std
::
string
&
filename
,
const
platform
::
Place
&
place
,
void
SaveLodTensor
(
const
platform
::
Place
&
place
,
framework
::
Variable
*
var
)
const
{
framework
::
Variable
*
var
)
const
{
auto
filename
=
Attr
<
std
::
string
>
(
"file_path"
);
auto
overwrite
=
Attr
<
bool
>
(
"overwrite"
);
if
(
FileExists
(
filename
)
&&
!
overwrite
)
{
PADDLE_THROW
(
"%s is existed, cannot save to it when overwrite=false"
,
filename
,
overwrite
);
}
MkDirRecursively
(
DirName
(
filename
).
c_str
());
auto
&
tensor
=
var
->
Get
<
framework
::
LoDTensor
>
();
auto
&
tensor
=
var
->
Get
<
framework
::
LoDTensor
>
();
// get device context from pool
// get device context from pool
...
...
python/paddle/fluid/io.py
浏览文件 @
620698e7
...
@@ -503,7 +503,7 @@ def save_checkpoint(executor,
...
@@ -503,7 +503,7 @@ def save_checkpoint(executor,
if
trainer_id
==
0
:
if
trainer_id
==
0
:
save_persist_vars_without_grad
(
executor
,
cur_dir
,
main_program
)
save_persist_vars_without_grad
(
executor
,
cur_dir
,
main_program
)
save_pserver_vars_by_notify
(
executor
,
cur_dir
,
ps_endpoint_list
,
lookup_table
)
save_pserver_vars_by_notify
(
executor
,
cur_dir
,
lookup_table
,
ps_endpoint_list
)
_scroll_delete
(
checkpoint_dir
,
max_num_checkpoints
)
_scroll_delete
(
checkpoint_dir
,
max_num_checkpoints
)
...
...
python/paddle/fluid/transpiler/distribute_transpiler.py
浏览文件 @
620698e7
...
@@ -846,7 +846,7 @@ class DistributeTranspiler:
...
@@ -846,7 +846,7 @@ class DistributeTranspiler:
inputs
=
{
'X'
:
[
self
.
table_name
]},
inputs
=
{
'X'
:
[
self
.
table_name
]},
outputs
=
{},
outputs
=
{},
attrs
=
{
attrs
=
{
'file_path'
:
self
.
table_name
)
'file_path'
:
self
.
table_name
})
})
return
checkpoint_save_block
.
idx
return
checkpoint_save_block
.
idx
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录