Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
46371515
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看板
未验证
提交
46371515
编写于
8月 20, 2021
作者:
J
JYChen
提交者:
GitHub
8月 20, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add (N,C,*) input support for GroupNorm (#34773)
* add (N,C,*) input support for GroupNorm * --amend
上级
1aa2bde0
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
112 addition
and
27 deletion
+112
-27
paddle/fluid/operators/group_norm_op.cc
paddle/fluid/operators/group_norm_op.cc
+7
-0
paddle/fluid/operators/group_norm_op.cu
paddle/fluid/operators/group_norm_op.cu
+20
-5
paddle/fluid/operators/group_norm_op.h
paddle/fluid/operators/group_norm_op.h
+20
-5
python/paddle/fluid/tests/unittests/test_group_norm_op_v2.py
python/paddle/fluid/tests/unittests/test_group_norm_op_v2.py
+63
-15
python/paddle/nn/layer/norm.py
python/paddle/nn/layer/norm.py
+2
-2
未找到文件。
paddle/fluid/operators/group_norm_op.cc
浏览文件 @
46371515
...
...
@@ -37,6 +37,13 @@ class GroupNormOp : public framework::OperatorWithKernel {
"GroupNorm"
);
auto
x_dim
=
ctx
->
GetInputDim
(
"X"
);
PADDLE_ENFORCE_GE
(
x_dim
.
size
(),
2
,
platform
::
errors
::
InvalidArgument
(
"The Input(X)'s dimension of Op(group_norm) must be "
"greater than 1. But received: %u-D Tensor, which shape is [%s]."
,
x_dim
.
size
(),
x_dim
));
const
std
::
string
data_layout_str
=
ctx
->
Attrs
().
Get
<
std
::
string
>
(
"data_layout"
);
const
framework
::
DataLayout
data_layout
=
...
...
paddle/fluid/operators/group_norm_op.cu
浏览文件 @
46371515
...
...
@@ -171,9 +171,16 @@ class GroupNormKernel<platform::CUDADeviceContext, T>
const
T
*
bias_data
=
nullptr
;
if
(
bias
)
bias_data
=
bias
->
data
<
T
>
();
int
imsize
=
(
data_layout
==
DataLayout
::
kNCHW
?
x_dims
[
2
]
*
x_dims
[
3
]
:
x_dims
[
1
]
*
x_dims
[
2
]);
int
imsize
=
1
;
if
(
data_layout
==
DataLayout
::
kNCHW
)
{
for
(
int
i
=
2
;
i
<
x_dims
.
size
();
++
i
)
{
imsize
*=
x_dims
[
i
];
}
}
else
{
for
(
int
i
=
1
;
i
<
x_dims
.
size
()
-
1
;
++
i
)
{
imsize
*=
x_dims
[
i
];
}
}
#ifdef __HIPCC__
int
block_size
=
std
::
max
(
std
::
min
(
256
,
imsize
),
64
);
#else
...
...
@@ -349,8 +356,16 @@ class GroupNormGradKernel<platform::CUDADeviceContext, T>
const
T
*
bias_data
=
nullptr
;
if
(
bias
)
bias_data
=
bias
->
data
<
T
>
();
int
imsize
=
(
data_layout
==
DataLayout
::
kNCHW
?
x_dims
[
2
]
*
x_dims
[
3
]
:
x_dims
[
1
]
*
x_dims
[
2
]);
int
imsize
=
1
;
if
(
data_layout
==
DataLayout
::
kNCHW
)
{
for
(
int
i
=
2
;
i
<
x_dims
.
size
();
++
i
)
{
imsize
*=
x_dims
[
i
];
}
}
else
{
for
(
int
i
=
1
;
i
<
x_dims
.
size
()
-
1
;
++
i
)
{
imsize
*=
x_dims
[
i
];
}
}
#ifdef __HIPCC__
int
block_size
=
std
::
max
(
std
::
min
(
256
,
imsize
),
64
);
...
...
paddle/fluid/operators/group_norm_op.h
浏览文件 @
46371515
...
...
@@ -68,9 +68,16 @@ class GroupNormKernel : public framework::OpKernel<T> {
const
T
*
bias_data
=
nullptr
;
if
(
bias
)
bias_data
=
bias
->
data
<
T
>
();
int
imsize
=
(
data_layout
==
DataLayout
::
kNCHW
?
x_dims
[
2
]
*
x_dims
[
3
]
:
x_dims
[
1
]
*
x_dims
[
2
]);
int
imsize
=
1
;
if
(
data_layout
==
DataLayout
::
kNCHW
)
{
for
(
int
i
=
2
;
i
<
x_dims
.
size
();
++
i
)
{
imsize
*=
x_dims
[
i
];
}
}
else
{
for
(
int
i
=
1
;
i
<
x_dims
.
size
()
-
1
;
++
i
)
{
imsize
*=
x_dims
[
i
];
}
}
auto
*
iter_x_data
=
x_data
;
auto
*
iter_y_data
=
y_data
;
for
(
int
bid
=
0
;
bid
<
x_dims
[
0
];
bid
++
)
{
...
...
@@ -257,8 +264,16 @@ class GroupNormGradKernel : public framework::OpKernel<T> {
const
T
*
bias_data
=
nullptr
;
if
(
bias
)
bias_data
=
bias
->
data
<
T
>
();
int
imsize
=
(
data_layout
==
DataLayout
::
kNCHW
?
x_dims
[
2
]
*
x_dims
[
3
]
:
x_dims
[
1
]
*
x_dims
[
2
]);
int
imsize
=
1
;
if
(
data_layout
==
DataLayout
::
kNCHW
)
{
for
(
int
i
=
2
;
i
<
x_dims
.
size
();
++
i
)
{
imsize
*=
x_dims
[
i
];
}
}
else
{
for
(
int
i
=
1
;
i
<
x_dims
.
size
()
-
1
;
++
i
)
{
imsize
*=
x_dims
[
i
];
}
}
auto
*
iter_x_data
=
x_data
;
auto
*
iter_d_x_data
=
d_x_data
;
auto
*
iter_y_data
=
y_data
;
...
...
python/paddle/fluid/tests/unittests/test_group_norm_op_v2.py
浏览文件 @
46371515
...
...
@@ -25,13 +25,29 @@ from paddle.fluid import Program, program_guard
import
paddle
def
group_norm_naive_for_general_dimension
(
x
,
scale
,
bias
,
epsilon
,
groups
):
# original version group norm only support 4-D tensor
# this function generalizes to support differnt dimensions tensor (>= 2-D)
input_shape
=
x
.
shape
N
,
C
=
x
.
shape
[
0
],
x
.
shape
[
1
]
G
=
groups
x
=
x
.
reshape
((
N
*
G
,
-
1
))
mean
=
np
.
mean
(
x
,
axis
=
1
,
keepdims
=
True
)
var
=
np
.
var
(
x
,
axis
=
1
,
keepdims
=
True
)
output
=
(
x
-
mean
)
/
np
.
sqrt
(
var
+
epsilon
)
output
=
output
.
reshape
(
input_shape
)
*
scale
.
reshape
(
(
-
1
,
1
,
1
))
+
bias
.
reshape
((
-
1
,
1
,
1
))
return
output
class
TestDygraphGroupNormv2
(
unittest
.
TestCase
):
def
test_dygraph
(
self
):
places
=
[
fluid
.
CPUPlace
()]
if
core
.
is_compiled_with_cuda
()
and
core
.
op_support_gpu
(
"group_norm"
):
places
.
append
(
fluid
.
CUDAPlace
(
0
))
shapes
=
[[
2
,
2
,
2
,
2
],
[
2
,
2
,
4
],
[
4
,
2
],
[
4
,
2
,
6
,
6
,
2
],
[
2
,
2
,
2
,
2
,
2
,
2
]]
for
p
in
places
:
shape
=
[
2
,
2
,
2
,
2
]
def
compute_v1
(
x
):
with
fluid
.
dygraph
.
guard
(
p
):
...
...
@@ -62,23 +78,26 @@ class TestDygraphGroupNormv2(unittest.TestCase):
self
.
assertRaises
(
ValueError
,
attr_data_format
)
x
=
np
.
random
.
randn
(
*
shape
).
astype
(
"float32"
)
y1
=
compute_v1
(
x
)
y2
=
compute_v2
(
x
)
result
=
np
.
allclose
(
y1
,
y2
,
atol
=
1e-5
)
if
not
result
:
print
(
"y1:"
,
y1
,
"
\t
y2:"
,
y2
)
self
.
assertTrue
(
result
)
test_weight_bias_false
()
test_nn_exception
()
for
shape
in
shapes
:
x
=
np
.
random
.
randn
(
*
shape
).
astype
(
"float32"
)
y1
=
compute_v1
(
x
)
y2
=
compute_v2
(
x
)
result
=
np
.
allclose
(
y1
,
y2
,
atol
=
1e-5
)
if
not
result
:
print
(
"y1:"
,
y1
,
"
\t
y2:"
,
y2
)
self
.
assertTrue
(
result
)
test_weight_bias_false
()
test_nn_exception
()
def
test_static
(
self
):
paddle
.
enable_static
()
places
=
[
fluid
.
CPUPlace
()]
if
core
.
is_compiled_with_cuda
()
and
core
.
op_support_gpu
(
"group_norm"
):
places
.
append
(
fluid
.
CUDAPlace
(
0
))
shapes
=
[[
2
,
6
,
2
,
2
],
[
2
,
6
,
4
],
[
4
,
6
],
[
4
,
6
,
6
,
6
,
2
],
[
4
,
6
,
2
,
2
,
2
,
2
]]
for
p
in
places
:
exe
=
fluid
.
Executor
(
p
)
shape
=
[
2
,
6
,
2
,
2
]
def
compute_v1
(
x_np
):
with
program_guard
(
Program
(),
Program
()):
...
...
@@ -98,10 +117,39 @@ class TestDygraphGroupNormv2(unittest.TestCase):
r
=
exe
.
run
(
feed
=
{
'x'
:
x_np
},
fetch_list
=
[
y
])[
0
]
return
r
x
=
np
.
random
.
randn
(
*
shape
).
astype
(
"float32"
)
y1
=
compute_v1
(
x
)
y2
=
compute_v2
(
x
)
self
.
assertTrue
(
np
.
allclose
(
y1
,
y2
,
atol
=
1e-5
))
for
shape
in
shapes
:
x
=
np
.
random
.
randn
(
*
shape
).
astype
(
"float32"
)
y1
=
compute_v1
(
x
)
y2
=
compute_v2
(
x
)
self
.
assertTrue
(
np
.
allclose
(
y1
,
y2
,
atol
=
1e-5
))
class
TestGroupNormAPIV2_With_General_Dimensions
(
unittest
.
TestCase
):
def
test_numerical_accuracy
(
self
):
paddle
.
disable_static
()
shapes
=
[(
2
,
6
),
(
2
,
6
,
4
),
(
2
,
6
,
4
,
4
),
(
2
,
6
,
6
,
6
,
2
),
(
2
,
6
,
6
,
6
,
2
,
3
)]
places
=
[
fluid
.
CPUPlace
()]
if
core
.
is_compiled_with_cuda
()
and
core
.
op_support_gpu
(
"group_norm"
):
places
.
append
(
fluid
.
CUDAPlace
(
0
))
for
place
in
places
:
for
shape
in
shapes
:
scale
=
np
.
array
([
1
]).
astype
(
"float32"
)
bias
=
np
.
array
([
0
]).
astype
(
"float32"
)
data
=
np
.
random
.
random
(
shape
).
astype
(
"float32"
)
expect_res1
=
group_norm_naive_for_general_dimension
(
data
,
scale
,
bias
,
epsilon
=
1e-5
,
groups
=
6
)
expect_res2
=
group_norm_naive_for_general_dimension
(
data
,
scale
,
bias
,
epsilon
=
1e-5
,
groups
=
2
)
gn1
=
paddle
.
nn
.
GroupNorm
(
num_channels
=
6
,
num_groups
=
6
)
gn2
=
paddle
.
nn
.
GroupNorm
(
num_channels
=
6
,
num_groups
=
2
)
data_pd
=
paddle
.
to_tensor
(
data
)
result1
=
gn1
(
data_pd
).
numpy
()
result2
=
gn2
(
data_pd
).
numpy
()
self
.
assertTrue
(
np
.
allclose
(
result1
,
expect_res1
,
atol
=
1e-5
))
self
.
assertTrue
(
np
.
allclose
(
result2
,
expect_res2
,
atol
=
1e-5
))
if
__name__
==
'__main__'
:
...
...
python/paddle/nn/layer/norm.py
浏览文件 @
46371515
...
...
@@ -338,8 +338,8 @@ class GroupNorm(Layer):
name(str, optional): Name for the GroupNorm, default is None. For more information, please refer to :ref:`api_guide_Name`..
Shape:
- x:
4-D tensor with shape: (batch, num_features, height, weight
).
- output:
4-D tensor with
same shape as input x.
- x:
Tensor with shape: (batch, num_features, *
).
- output:
The
same shape as input x.
Returns:
None
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录