Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
822cf978
P
Paddle
项目概览
Crayon鑫
/
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看板
提交
822cf978
编写于
10月 27, 2017
作者:
Z
zchen0211
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more test and bn fix
上级
40483c11
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
11 deletion
+13
-11
paddle/operators/batch_norm_op.cu
paddle/operators/batch_norm_op.cu
+0
-3
python/paddle/v2/framework/tests/test_batch_norm_op.py
python/paddle/v2/framework/tests/test_batch_norm_op.py
+13
-8
未找到文件。
paddle/operators/batch_norm_op.cu
浏览文件 @
822cf978
...
...
@@ -117,9 +117,6 @@ class BatchNormKernel<platform::GPUPlace, T> : public framework::OpKernel<T> {
math
::
SetConstant
<
platform
::
GPUPlace
,
T
>
functor
;
functor
(
ctx
.
device_context
(),
saved_mean
,
0
);
functor
(
ctx
.
device_context
(),
saved_variance
,
0
);
// FIXME(qiao) should not set zero self
functor
(
ctx
.
device_context
(),
mean_out
,
0
);
functor
(
ctx
.
device_context
(),
variance_out
,
0
);
auto
handle
=
ctx
.
cuda_device_context
().
cudnn_handle
();
...
...
python/paddle/v2/framework/tests/test_batch_norm_op.py
浏览文件 @
822cf978
...
...
@@ -104,14 +104,14 @@ class TestBatchNormOp(OpTest):
self
.
assertTrue
(
np
.
allclose
(
np
.
array
(
tensor
),
np_array
,
atol
=
atol
),
msg
)
def
test_python
(
self
):
data_format
=
"N
HWC
"
data_format
=
"N
CHW
"
epsilon
=
0.00001
momentum
=
0.9
# N, H, W, C: 2, 3, 4, 2
channel_num
=
2
x_shape
=
[
2
,
3
,
4
,
channel_num
]
scale_shape
=
[
c
hannel_num
]
n
,
h
,
w
,
c
=
2
,
3
,
4
,
2
x_shape
=
[
n
,
h
,
w
,
c
]
scale_shape
=
[
c
]
x_val
=
np
.
random
.
random_sample
(
x_shape
).
astype
(
np
.
float32
)
scale_val
=
np
.
random
.
random_sample
(
scale_shape
).
astype
(
np
.
float32
)
...
...
@@ -131,7 +131,7 @@ class TestBatchNormOp(OpTest):
# running N, C, H, W case
# should produce the same results
x_shape2
=
[
2
,
channel_num
,
3
,
4
]
x_shape2
=
[
n
,
c
,
h
,
w
]
x_val2
=
np
.
transpose
(
x_val
,
(
0
,
3
,
1
,
2
))
y_out2
,
saved_mean2
,
var_ref2
=
_reference_training
(
x_val2
,
scale_val
,
bias_val
,
epsilon
,
"NCHW"
)
...
...
@@ -146,12 +146,15 @@ class TestBatchNormOp(OpTest):
# test backward now
# NHWC
y_grad
=
np
.
ones
(
x_shape
).
astype
(
np
.
float32
)
self
.
y_grad
=
np
.
random
.
random_sample
(
x_shape
).
astype
(
np
.
float32
)
y_grad
=
self
.
y_grad
# y_grad = np.ones(x_shape).astype(np.float32)
x_grad_ref
,
scale_grad_ref
,
bias_grad_ref
=
_reference_grad
(
x_val
,
y_grad
,
scale_val
,
saved_mean
,
var_ref
,
epsilon
,
"NHWC"
)
# NCHW
y_grad2
=
np
.
ones
(
x_shape2
).
astype
(
np
.
float32
)
y_grad2
=
np
.
transpose
(
y_grad
,
(
0
,
3
,
1
,
2
))
# y_grad2 = np.ones(x_shape2).astype(np.float32)
x_grad_ref2
,
scale_grad_ref2
,
bias_grad_ref2
=
_reference_grad
(
x_val2
,
y_grad2
,
scale_val
,
saved_mean2
,
var_ref2
,
epsilon
,
"NCHW"
)
...
...
@@ -168,7 +171,7 @@ class TestBatchNormOp(OpTest):
epsilon
=
0.00001
momentum
=
0.9
# N, H, W, C: 2, 3, 4, 2
# N, H, W, C:
1
2, 3, 4, 2
n
,
h
,
w
,
c
=
2
,
3
,
4
,
2
if
data_format
==
"NHWC"
:
...
...
@@ -279,6 +282,8 @@ class TestBatchNormOp(OpTest):
None
,
place
)
# check gradient output
print
'var x_grad tensor: '
,
str
(
place
),
np
.
array
(
x_grad_tensor
)
print
'var x_grad by python: '
,
str
(
place
),
x_grad_ref
self
.
__assert_close
(
x_grad_tensor
,
x_grad_ref
,
"x_grad"
)
self
.
__assert_close
(
scale_grad_tensor
,
scale_grad_ref
,
"scale_grad"
)
self
.
__assert_close
(
bias_grad_tensor
,
bias_grad_ref
,
"bias_grad"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录