Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
20befdef
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
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看板
未验证
提交
20befdef
编写于
3月 27, 2023
作者:
C
cyber-pioneer
提交者:
GitHub
3月 27, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix eval branch of composite rule of batch_norm (#52154)
上级
bcea3b89
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
30 addition
and
5 deletion
+30
-5
python/paddle/fluid/tests/unittests/prim/composite_ops/test_composite_batch_norm.py
...unittests/prim/composite_ops/test_composite_batch_norm.py
+30
-0
python/paddle/incubate/autograd/composite_rules.py
python/paddle/incubate/autograd/composite_rules.py
+0
-5
未找到文件。
python/paddle/fluid/tests/unittests/prim/composite_ops/test_composite_batch_norm.py
浏览文件 @
20befdef
...
...
@@ -413,5 +413,35 @@ class TestPrimForwardAndBackward(unittest.TestCase):
)
class
TestPrimEvalBranch
(
unittest
.
TestCase
):
"""
Test eval branch or composite rule of batch_norm.
"""
def
setUp
(
self
):
paddle
.
seed
(
2022
)
self
.
x
=
paddle
.
randn
([
4
,
2
,
6
,
6
],
dtype
=
"float32"
)
self
.
x
.
stop_gradient
=
False
def
train
(
self
,
use_prim
):
core
.
_set_prim_all_enabled
(
use_prim
)
paddle
.
seed
(
2022
)
net
=
BatchNorm
(
2
,
is_test
=
True
)
net
=
apply_to_static
(
net
,
False
)
out
=
net
(
self
.
x
)
loss
=
paddle
.
mean
(
out
)
return
loss
def
test_eval_branch
(
self
):
expected
=
self
.
train
(
False
)
actual
=
self
.
train
(
True
)
np
.
testing
.
assert_allclose
(
expected
,
actual
,
rtol
=
1e-6
,
atol
=
1e-6
,
)
if
__name__
==
'__main__'
:
unittest
.
main
()
python/paddle/incubate/autograd/composite_rules.py
浏览文件 @
20befdef
...
...
@@ -86,11 +86,6 @@ def composite_batchnorm(
feature_axis
=
(
1
if
data_layout
in
(
'NC'
,
'NCL'
,
'NCHW'
,
'NCHWD'
)
else
len
(
x
.
shape
)
-
1
)
if
use_global_stats
is
None
:
use_global_stats
=
is_test
trainable_statistics
=
False
else
:
trainable_statistics
=
not
use_global_stats
use_run_stat
=
(
is_test
and
(
not
trainable_statistics
))
or
use_global_stats
reduce_axes
=
tuple
(
i
for
i
in
range
(
len
(
x
.
shape
))
if
i
!=
feature_axis
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录