Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
df538439
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看板
未验证
提交
df538439
编写于
4月 09, 2020
作者:
C
Chen Weihang
提交者:
GitHub
4月 09, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
api build strategy error polish, test=develop (#23546)
上级
b11340a4
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
53 addition
and
29 deletion
+53
-29
paddle/fluid/pybind/pybind.cc
paddle/fluid/pybind/pybind.cc
+53
-29
未找到文件。
paddle/fluid/pybind/pybind.cc
浏览文件 @
df538439
...
...
@@ -1863,8 +1863,10 @@ All parameter, weight, gradient are variables in Paddle.
"reduce_strategy"
,
[](
const
BuildStrategy
&
self
)
{
return
self
.
reduce_
;
},
[](
BuildStrategy
&
self
,
BuildStrategy
::
ReduceStrategy
strategy
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
reduce_
=
strategy
;
},
R"DOC((fluid.BuildStrategy.ReduceStrategy, optional): there are two reduce
...
...
@@ -1887,8 +1889,10 @@ All parameter, weight, gradient are variables in Paddle.
[](
const
BuildStrategy
&
self
)
{
return
self
.
gradient_scale_
;
},
[](
BuildStrategy
&
self
,
BuildStrategy
::
GradientScaleStrategy
strategy
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finalized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
gradient_scale_
=
strategy
;
},
R"DOC((fluid.BuildStrategy.GradientScaleStrategy, optional): there are three
...
...
@@ -1949,8 +1953,10 @@ All parameter, weight, gradient are variables in Paddle.
"debug_graphviz_path"
,
[](
const
BuildStrategy
&
self
)
{
return
self
.
debug_graphviz_path_
;
},
[](
BuildStrategy
&
self
,
const
std
::
string
&
path
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
debug_graphviz_path_
=
path
;
},
R"DOC((str, optional): debug_graphviz_path indicates the path that
...
...
@@ -1971,8 +1977,10 @@ All parameter, weight, gradient are variables in Paddle.
return
self
.
enable_sequential_execution_
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
enable_sequential_execution_
=
b
;
},
R"DOC((bool, optional): If set True, the execution order of ops would
...
...
@@ -1991,8 +1999,10 @@ All parameter, weight, gradient are variables in Paddle.
return
self
.
remove_unnecessary_lock_
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
remove_unnecessary_lock_
=
b
;
},
R"DOC((bool, optional): If set True, some locks in GPU ops would be
...
...
@@ -2010,7 +2020,8 @@ All parameter, weight, gradient are variables in Paddle.
[](
const
BuildStrategy
&
self
)
{
return
self
.
num_trainers_
;
},
[](
BuildStrategy
&
self
,
int
num_trainers
)
{
#ifdef WIN32
PADDLE_THROW
(
"Windows has NO support to distribute mode."
);
PADDLE_THROW
(
platform
::
errors
::
Unavailable
(
"Windows has NO support to distribute mode."
));
#endif
self
.
num_trainers_
=
num_trainers
;
})
...
...
@@ -2053,8 +2064,10 @@ All parameter, weight, gradient are variables in Paddle.
return
self
.
fuse_elewise_add_act_ops_
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
fuse_elewise_add_act_ops_
=
b
;
},
R"DOC((bool, optional): fuse_elewise_add_act_ops indicate whether
...
...
@@ -2072,9 +2085,10 @@ All parameter, weight, gradient are variables in Paddle.
"fuse_bn_act_ops"
,
[](
const
BuildStrategy
&
self
)
{
return
self
.
fuse_bn_act_ops_
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_
EQ
(
!
self
.
IsFinalized
(),
true
,
PADDLE_ENFORCE_
NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy is finlaized."
));
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
fuse_bn_act_ops_
=
b
;
},
R"DOC((bool, optional): fuse_bn_act_ops indicate whether
...
...
@@ -2092,9 +2106,10 @@ All parameter, weight, gradient are variables in Paddle.
"enable_auto_fusion"
,
[](
const
BuildStrategy
&
self
)
{
return
self
.
enable_auto_fusion_
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_
EQ
(
!
self
.
IsFinalized
(),
true
,
PADDLE_ENFORCE_
NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy is finlaized."
));
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
enable_auto_fusion_
=
b
;
},
R"DOC((bool, optional): Whether to enable fusing subgraph to a
...
...
@@ -2115,8 +2130,10 @@ All parameter, weight, gradient are variables in Paddle.
return
self
.
fuse_relu_depthwise_conv_
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
fuse_relu_depthwise_conv_
=
b
;
},
R"DOC((bool, optional): fuse_relu_depthwise_conv indicate whether
...
...
@@ -2138,8 +2155,10 @@ All parameter, weight, gradient are variables in Paddle.
self
.
fuse_broadcast_ops_
==
boost
::
none
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, "
"cannot be configured again."
));
self
.
fuse_broadcast_ops_
=
b
;
},
R"DOC((bool, optional): fuse_broadcast_op indicates whether
...
...
@@ -2162,16 +2181,20 @@ All parameter, weight, gradient are variables in Paddle.
self
.
fuse_all_optimizer_ops_
==
boost
::
none
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, "
"cannot be configured again."
));
self
.
fuse_all_optimizer_ops_
=
b
;
})
.
def_property
(
"sync_batch_norm"
,
[](
const
BuildStrategy
&
self
)
{
return
self
.
sync_batch_norm_
;
},
[](
BuildStrategy
&
self
,
bool
b
)
{
PADDLE_ENFORCE_EQ
(
!
self
.
IsFinalized
(),
true
,
"BuildStrategy is finlaized."
);
PADDLE_ENFORCE_NE
(
self
.
IsFinalized
(),
true
,
platform
::
errors
::
PreconditionNotMet
(
"BuildStrategy has been finlaized, cannot be "
"configured again."
));
self
.
sync_batch_norm_
=
b
;
},
R"DOC((bool, optional): sync_batch_norm indicates whether to use
...
...
@@ -2204,9 +2227,9 @@ All parameter, weight, gradient are variables in Paddle.
}
else
if
(
PyBool_Check
(
py_obj
))
{
self
.
memory_optimize_
=
(
py_obj
==
Py_True
);
}
else
{
PADDLE_THROW
(
"BuildStrategy.memory_optimize must be None, False or "
"True"
);
PADDLE_THROW
(
platform
::
errors
::
InvalidArgument
(
"BuildStrategy.memory_optimize must be
set to
None, False or "
"True"
)
)
;
}
},
R"DOC((bool, optional): memory opitimize aims to save total memory
...
...
@@ -2222,7 +2245,8 @@ All parameter, weight, gradient are variables in Paddle.
[](
BuildStrategy
&
self
,
bool
b
)
{
#ifdef WIN32
if
(
b
)
{
PADDLE_THROW
(
"Windows has NO support to distribute mode."
);
PADDLE_THROW
(
platform
::
errors
::
Unavailable
(
"Windows has NO support to distribute mode."
));
}
#else
self
.
is_distribution_
=
b
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录