Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
66655ad8
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看板
未验证
提交
66655ad8
编写于
5月 14, 2020
作者:
W
WuHaobo
提交者:
GitHub
5月 14, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test=release/1.8 cherry-pick unfold_op (#24505)
上级
ec0f78a3
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
50 addition
and
34 deletion
+50
-34
paddle/fluid/operators/unfold_op.cc
paddle/fluid/operators/unfold_op.cc
+39
-28
paddle/fluid/operators/unfold_op.h
paddle/fluid/operators/unfold_op.h
+9
-6
python/paddle/fluid/layers/nn.py
python/paddle/fluid/layers/nn.py
+2
-0
未找到文件。
paddle/fluid/operators/unfold_op.cc
浏览文件 @
66655ad8
...
@@ -61,10 +61,12 @@ class UnfoldOp : public framework::OperatorWithKernel {
...
@@ -61,10 +61,12 @@ class UnfoldOp : public framework::OperatorWithKernel {
public:
public:
using
framework
::
OperatorWithKernel
::
OperatorWithKernel
;
using
framework
::
OperatorWithKernel
::
OperatorWithKernel
;
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"X"
),
PADDLE_ENFORCE_EQ
(
"Input(X) of UnfoldOp should not be null"
);
ctx
->
HasInput
(
"X"
),
true
,
PADDLE_ENFORCE
(
ctx
->
HasOutput
(
"Y"
),
platform
::
errors
::
NotFound
(
"Input(X) of UnfoldOp should not be null"
));
"Output(Y) of UnfoldOp should not be null"
);
PADDLE_ENFORCE_EQ
(
ctx
->
HasOutput
(
"Y"
),
true
,
platform
::
errors
::
NotFound
(
"Output(Y) of UnfoldOp should not be null"
));
auto
in_dims
=
ctx
->
GetInputDim
(
"X"
);
auto
in_dims
=
ctx
->
GetInputDim
(
"X"
);
std
::
vector
<
int
>
kernel_sizes
=
std
::
vector
<
int
>
kernel_sizes
=
ctx
->
Attrs
().
Get
<
std
::
vector
<
int
>>
(
"kernel_sizes"
);
ctx
->
Attrs
().
Get
<
std
::
vector
<
int
>>
(
"kernel_sizes"
);
...
@@ -74,31 +76,36 @@ class UnfoldOp : public framework::OperatorWithKernel {
...
@@ -74,31 +76,36 @@ class UnfoldOp : public framework::OperatorWithKernel {
ctx
->
Attrs
().
Get
<
std
::
vector
<
int
>>
(
"dilations"
);
ctx
->
Attrs
().
Get
<
std
::
vector
<
int
>>
(
"dilations"
);
// Only [N, C, H, W] input supported now
// Only [N, C, H, W] input supported now
PADDLE_ENFORCE
(
PADDLE_ENFORCE_EQ
(
in_dims
.
size
()
==
4
,
in_dims
.
size
(),
4
,
"Input should be 4-D tensor of format [N, C, H, W], but get %u"
,
platform
::
errors
::
InvalidArgument
(
in_dims
.
size
());
"Input should be 4-D tensor of format [N, C, H, W], but get %u"
,
PADDLE_ENFORCE
(
in_dims
.
size
()));
in_dims
.
size
()
-
kernel_sizes
.
size
()
==
2U
,
PADDLE_ENFORCE_EQ
(
"The dims of X should be larger than that of kernel_sizes "
in_dims
.
size
()
-
kernel_sizes
.
size
(),
2U
,
"by a number of 2, due to the batch size and input channel dim. "
platform
::
errors
::
InvalidArgument
(
"But recieved dims(X:%u) - dims(kernel_sizes:%u) != 2"
,
"The dims of X should be larger than that of kernel_sizes "
in_dims
.
size
(),
kernel_sizes
.
size
());
"by a number of 2, due to the batch size and input channel dim. "
"But recieved dims(X:%u) - dims(kernel_sizes:%u) != 2"
,
in_dims
.
size
(),
kernel_sizes
.
size
()));
PADDLE_ENFORCE_EQ
(
PADDLE_ENFORCE_EQ
(
strides
.
size
(),
kernel_sizes
.
size
(),
strides
.
size
(),
kernel_sizes
.
size
(),
"The dims of strides should be the same with that of kernel_sizes. "
platform
::
errors
::
InvalidArgument
(
"But recieved dims(strides: %u) != dims(kernel_sizes: %u)."
,
"The dims of strides should be the same with that of kernel_sizes. "
strides
.
size
(),
kernel_sizes
.
size
());
"But recieved dims(strides: %u) != dims(kernel_sizes: %u)."
,
strides
.
size
(),
kernel_sizes
.
size
()));
PADDLE_ENFORCE_EQ
(
PADDLE_ENFORCE_EQ
(
paddings
.
size
(),
2
*
strides
.
size
(),
paddings
.
size
(),
2
*
strides
.
size
(),
"The dims of paddings should be 2 times of that of strides. "
platform
::
errors
::
InvalidArgument
(
"But recieved dims(paddings: %u) != 2*dims(strides: %u)."
,
"The dims of paddings should be 2 times of that of strides. "
paddings
.
size
(),
strides
.
size
());
"But recieved dims(paddings: %u) != 2*dims(strides: %u)."
,
paddings
.
size
(),
strides
.
size
()));
PADDLE_ENFORCE_EQ
(
PADDLE_ENFORCE_EQ
(
strides
.
size
(),
dilations
.
size
(),
strides
.
size
(),
dilations
.
size
(),
"The dims of strides should be the same with that of dilations. "
platform
::
errors
::
InvalidArgument
(
"But recieved dims(strides: %u) != dims(dilations: %u)."
,
"The dims of strides should be the same with that of dilations. "
strides
.
size
(),
dilations
.
size
());
"But recieved dims(strides: %u) != dims(dilations: %u)."
,
strides
.
size
(),
dilations
.
size
()));
std
::
vector
<
int
>
out_dims
;
std
::
vector
<
int
>
out_dims
;
out_dims
.
push_back
(
in_dims
[
0
]);
out_dims
.
push_back
(
in_dims
[
0
]);
...
@@ -131,11 +138,15 @@ class UnfoldGradOp : public framework::OperatorWithKernel {
...
@@ -131,11 +138,15 @@ class UnfoldGradOp : public framework::OperatorWithKernel {
using
framework
::
OperatorWithKernel
::
OperatorWithKernel
;
using
framework
::
OperatorWithKernel
::
OperatorWithKernel
;
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
PADDLE_ENFORCE
(
ctx
->
HasInput
(
framework
::
GradVarName
(
"Y"
)),
PADDLE_ENFORCE_EQ
(
"The gradient of Y should not be null"
);
ctx
->
HasInput
(
framework
::
GradVarName
(
"Y"
)),
true
,
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"X"
),
"The input X should not be null"
);
platform
::
errors
::
NotFound
(
"The gradient of Y should not be null"
));
PADDLE_ENFORCE
(
ctx
->
HasOutput
(
framework
::
GradVarName
(
"X"
)),
PADDLE_ENFORCE_EQ
(
"The gradient of X should not be null"
);
ctx
->
HasInput
(
"X"
),
true
,
platform
::
errors
::
NotFound
(
"The input X should not be null"
));
PADDLE_ENFORCE_EQ
(
ctx
->
HasOutput
(
framework
::
GradVarName
(
"X"
)),
true
,
platform
::
errors
::
NotFound
(
"The gradient of X should not be null"
));
ctx
->
SetOutputDim
(
framework
::
GradVarName
(
"X"
),
ctx
->
GetInputDim
(
"X"
));
ctx
->
SetOutputDim
(
framework
::
GradVarName
(
"X"
),
ctx
->
GetInputDim
(
"X"
));
}
}
...
...
paddle/fluid/operators/unfold_op.h
浏览文件 @
66655ad8
...
@@ -29,12 +29,15 @@ inline int CalcOutputSize(int input_size, int filter_size, int dilation,
...
@@ -29,12 +29,15 @@ inline int CalcOutputSize(int input_size, int filter_size, int dilation,
int
padding1
,
int
padding2
,
int
stride
)
{
int
padding1
,
int
padding2
,
int
stride
)
{
const
int
dkernel
=
dilation
*
(
filter_size
-
1
)
+
1
;
const
int
dkernel
=
dilation
*
(
filter_size
-
1
)
+
1
;
int
output_size
=
(
input_size
+
padding1
+
padding2
-
dkernel
)
/
stride
+
1
;
int
output_size
=
(
input_size
+
padding1
+
padding2
-
dkernel
)
/
stride
+
1
;
PADDLE_ENFORCE
(
output_size
>
0
,
"Due to the settings of padding(%d, %d), filter_size(%d), "
PADDLE_ENFORCE_GT
(
"dilation(%d) and "
output_size
,
0UL
,
"stride(%d), the output size is less than 0, please check "
platform
::
errors
::
InvalidArgument
(
"again. Input_size:%d"
,
"Due to the settings of padding(%d, %d), filter_size(%d), "
padding1
,
padding2
,
filter_size
,
dilation
,
stride
,
input_size
);
"dilation(%d) and "
"stride(%d), the output size is less than 0, please check "
"again. Input_size:%d"
,
padding1
,
padding2
,
filter_size
,
dilation
,
stride
,
input_size
));
return
output_size
;
return
output_size
;
}
}
...
...
python/paddle/fluid/layers/nn.py
浏览文件 @
66655ad8
...
@@ -15257,6 +15257,8 @@ def unfold(x, kernel_sizes, strides=1, paddings=0, dilations=1, name=None):
...
@@ -15257,6 +15257,8 @@ def unfold(x, kernel_sizes, strides=1, paddings=0, dilations=1, name=None):
helper = LayerHelper("unfold", **locals())
helper = LayerHelper("unfold", **locals())
check_variable_and_dtype(x, 'x', ['float32', 'float64'], 'unfold')
assert len(x.shape) == 4, \
assert len(x.shape) == 4, \
"input should be the format of [N, C, H, W]"
"input should be the format of [N, C, H, W]"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录