Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
d2fda532
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看板
提交
d2fda532
编写于
10月 12, 2017
作者:
G
gongweibao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add expand comment
上级
48556ba3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
58 addition
and
34 deletion
+58
-34
paddle/operators/block_expand_op.cc
paddle/operators/block_expand_op.cc
+32
-8
paddle/operators/block_expand_op.h
paddle/operators/block_expand_op.h
+26
-26
未找到文件。
paddle/operators/block_expand_op.cc
浏览文件 @
d2fda532
...
...
@@ -23,12 +23,18 @@ class BlockExpandOp : public framework::OperatorWithKernel {
protected:
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"block"
),
"Input(block) of BlockExpandOp should not be null."
);
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"padding"
),
"Input(padding) of BlockExpandOp should not be null."
);
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"stride"
),
"Input(stride) of BlockExpandOp should not be null."
);
using
namespace
framework
;
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"input"
),
"Input of BlockExpandOp should not be null."
);
PADDLE_ENFORCE
(
ctx
->
HasOutput
(
"Out"
),
"Output(Out) of BlockExpandOp op should not be null."
);
auto
in_dim
=
ctx
->
GetInputDim
(
"input"
);
PADDLE_ENFORCE_EQ
(
in_dim
.
size
(),
4
,
"Input format must be NCHW."
);
PADDLE_ENFORCE_GE
(
in_dim
[
0
],
1
,
"Input batchsize must >= 1."
);
ctx
->
ShareLoD
(
"X"
,
/*->*/
"Out"
);
// ctx->SetOutputDim("Out", {1});
}
};
...
...
@@ -38,8 +44,26 @@ class BlockExpandOpMaker : public framework::OpProtoAndCheckerMaker {
BlockExpandOpMaker
(
framework
::
OpProto
*
proto
,
framework
::
OpAttrChecker
*
op_checker
)
:
OpProtoAndCheckerMaker
(
proto
,
op_checker
)
{
AddInput
(
"block"
,
"The input of block_expand op"
);
AddOutput
(
"stride"
,
"The output of block_expand op"
);
AddInput
(
"input"
,
"The input of block_expand op"
);
AddOutput
(
"out"
,
"The output of block_expand op"
);
AddAttr
<
int
>
(
"block_height"
,
R"DOC(
)DOC"
);
AddAttr
<
int
>
(
"block_width"
,
R"DOC(
)DOC"
);
AddAttr
<
int
>
(
"stride_height"
,
R"DOC(
)DOC"
);
AddAttr
<
int
>
(
"stride_width"
,
R"DOC(
)DOC"
);
AddAttr
<
int
>
(
"padding_height"
,
R"DOC(
)DOC"
);
AddAttr
<
int
>
(
"padding_width"
,
R"DOC(
)DOC"
);
AddComment
(
R"DOC(
Expand feature map to minibatch matrix.
- matrix width is: blockH_ * blockW_ * channels_
...
...
paddle/operators/block_expand_op.h
浏览文件 @
d2fda532
...
...
@@ -25,34 +25,34 @@ namespace operators {
template
<
typename
Place
,
typename
T
>
class
BlockExpandKernel
:
public
framework
::
OpKernel
<
T
>
{
public:
void
Compute
(
const
framework
::
ExecutionContext
&
c
ontext
)
const
override
{
void
Compute
(
const
framework
::
ExecutionContext
&
c
tx
)
const
override
{
using
namespace
framework
;
const
Tensor
*
in
put
=
context
.
Input
<
Tensor
>
(
"input"
);
const
Tensor
*
filter
=
context
.
Input
<
Tensor
>
(
"filter
"
);
const
Tensor
*
stride
=
context
.
Input
<
Tensor
>
(
"stride"
);
const
Tensor
*
padding
=
context
.
Input
<
Tensor
>
(
"padding"
);
Tensor
*
out
=
context
.
Output
<
Tensor
>
(
"Out"
);
auto
input_dim
=
input
->
dims
()
;
size_t
N
=
input_dim
[
0
];
size_t
C
=
input_dim
[
1
];
PADDLE_ENFORCE_GE
(
N
,
1
,
"Input batchsize must >= 1."
)
;
PADDLE_ENFORCE_EQ
(
input_dim
.
size
(),
4
,
"Input format must be NCHW."
);
size_t
input_height
=
input_dim
[
2
]
;
size_t
input_height
=
input_dim
[
3
]
;
size_t
filter_height
=
filter
[
0
]
;
size_t
filter_width
=
filter
[
1
]
;
size_t
output_height
=
1
+
(
input_height
+
2
*
padding_height
-
block_height
()
+
stride_height
-
1
)
/
stride_height
;
size_
t
output_width
=
const
Tensor
*
in
=
ctx
.
Input
<
Tensor
>
(
"input"
);
Tensor
*
out
=
ctx
.
Output
<
Tensor
>
(
"Out
"
);
out
->
mutable_data
<
T
>
(
ctx
.
GetPlace
()
);
auto
in_dim
=
in
->
dims
(
);
int
N
=
in_dim
[
0
];
int
C
=
in_dim
[
1
]
;
int
in_height
=
in_dim
[
2
];
int
in_width
=
in_dim
[
3
]
;
int
block_height
=
ctx
.
Attr
<
int
>
(
"block_height"
);
int
block_width
=
ctx
.
Attr
<
int
>
(
"block_width"
)
;
int
stride_height
=
ctx
.
Attr
<
int
>
(
"stride_height"
)
;
int
stride_width
=
ctx
.
Attr
<
int
>
(
"stride_width"
);
int
padding_height
=
ctx
.
Attr
<
int
>
(
"padding_height"
)
;
int
padding_width
=
ctx
.
Attr
<
int
>
(
"padding_width"
)
;
int
output_height
=
1
+
(
in_height
+
2
*
padding_height
-
block_height
+
stride_height
-
1
)
/
stride_height
;
in
t
output_width
=
1
+
(
in
put_width
+
2
*
padding_width
-
block_width
()
+
stride_width
-
1
)
/
(
in
_width
+
2
*
padding_width
-
block_width
+
stride_width
-
1
)
/
stride_width
;
Tensor
col
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录