Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
305bd25b
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看板
未验证
提交
305bd25b
编写于
8月 20, 2019
作者:
C
chengduo
提交者:
GitHub
8月 20, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Cherry pick] Fix register op without gradient (#19272)
* fix REGISTER_OP_WITHOUT_GRADIENT test=develop
上级
1bb013fa
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
32 addition
and
11 deletion
+32
-11
paddle/fluid/framework/op_registry.h
paddle/fluid/framework/op_registry.h
+6
-3
python/paddle/fluid/tests/unittests/test_backward.py
python/paddle/fluid/tests/unittests/test_backward.py
+26
-8
未找到文件。
paddle/fluid/framework/op_registry.h
浏览文件 @
305bd25b
...
...
@@ -16,6 +16,7 @@ limitations under the License. */
#include <algorithm>
#include <atomic>
#include <memory>
#include <string>
#include <tuple>
#include <type_traits>
...
...
@@ -53,8 +54,9 @@ class Registrar {
template
<
typename
...
ARGS
>
struct
OperatorRegistrar
:
public
Registrar
{
explicit
OperatorRegistrar
(
const
char
*
op_type
)
{
PADDLE_ENFORCE
(
!
OpInfoMap
::
Instance
().
Has
(
op_type
),
"'%s' is registered more than once."
,
op_type
);
if
(
OpInfoMap
::
Instance
().
Has
(
op_type
))
{
PADDLE_THROW
(
"'%s' is registered more than once."
,
op_type
);
}
static_assert
(
sizeof
...(
ARGS
)
!=
0
,
"OperatorRegistrar should be invoked at least by OpClass"
);
OpInfo
info
;
...
...
@@ -206,7 +208,8 @@ struct OpKernelRegistrarFunctorEx<PlaceType, false, I,
}
#define REGISTER_OP_WITHOUT_GRADIENT(op_type, op_class, op_maker_class) \
REGISTER_OPERATOR(op_type, op_class, op_maker_class)
REGISTER_OPERATOR(op_type, op_class, op_maker_class, \
paddle::framework::EmptyGradOpMaker)
/**
* Macro to register OperatorKernel.
...
...
python/paddle/fluid/tests/unittests/test_backward.py
浏览文件 @
305bd25b
...
...
@@ -19,7 +19,7 @@ import paddle.fluid as fluid
from
simple_nets
import
init_data
def
simple_net1
():
def
case1_fill_grad_vars
():
x
=
fluid
.
layers
.
data
(
name
=
'image'
,
shape
=
[
784
],
dtype
=
'float32'
)
label
=
fluid
.
layers
.
data
(
name
=
'label'
,
shape
=
[
1
],
dtype
=
'int64'
)
feature
=
fluid
.
layers
.
fc
(
input
=
x
,
size
=
20
,
act
=
None
)
...
...
@@ -30,7 +30,7 @@ def simple_net1():
return
loss
def
simple_net2
():
def
case2_prune_no_grad_branch
():
x
=
fluid
.
layers
.
data
(
name
=
'image'
,
shape
=
[
784
],
dtype
=
'float32'
)
label
=
fluid
.
layers
.
data
(
name
=
'label'
,
shape
=
[
1
],
dtype
=
'int64'
)
feature
=
fluid
.
layers
.
fc
(
input
=
x
,
size
=
10
,
act
=
None
)
...
...
@@ -42,14 +42,28 @@ def simple_net2():
return
loss
def
case3_prune_no_grad_branch2
():
label
=
fluid
.
layers
.
data
(
name
=
'label'
,
shape
=
[
1
],
dtype
=
'int64'
)
label
=
fluid
.
layers
.
cast
(
label
,
dtype
=
"float32"
)
label
=
fluid
.
layers
.
cast
(
label
,
dtype
=
'int64'
)
out
=
fluid
.
layers
.
one_hot
(
input
=
label
,
depth
=
100
)
loss
=
fluid
.
layers
.
mean
(
out
)
return
loss
def
case4_with_no_grad_op_maker
():
out
=
fluid
.
layers
.
gaussian_random
(
shape
=
[
20
,
30
])
loss
=
fluid
.
layers
.
mean
(
out
)
return
loss
class
TestBackward
(
unittest
.
TestCase
):
def
check_backward
(
self
,
model
):
def
check_backward
(
self
,
model
,
feed_dict
):
place
=
fluid
.
CPUPlace
()
exe
=
fluid
.
Executor
(
place
)
main
=
fluid
.
Program
()
startup
=
fluid
.
Program
()
batch_size
=
2
with
fluid
.
program_guard
(
main
,
startup
):
loss
=
model
()
...
...
@@ -58,12 +72,16 @@ class TestBackward(unittest.TestCase):
optimizer
.
minimize
(
loss
)
exe
.
run
(
fluid
.
default_startup_program
())
img
,
label
=
init_data
(
batch_size
,
img_shape
=
[
784
],
label_range
=
9
)
exe
.
run
(
feed
=
{
'image'
:
img
,
'label'
:
label
})
exe
.
run
(
feed
=
feed_dict
)
def
test_backward
(
self
):
self
.
check_backward
(
simple_net1
)
self
.
check_backward
(
simple_net2
)
batch_size
=
2
img
,
label
=
init_data
(
batch_size
,
img_shape
=
[
784
],
label_range
=
9
)
feed_dict
=
{
'image'
:
img
,
'label'
:
label
}
self
.
check_backward
(
case1_fill_grad_vars
,
feed_dict
)
self
.
check_backward
(
case2_prune_no_grad_branch
,
feed_dict
)
self
.
check_backward
(
case3_prune_no_grad_branch2
,
{
'label'
:
label
})
self
.
check_backward
(
case4_with_no_grad_op_maker
,
{})
if
__name__
==
'__main__'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录