Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
5a9dd8ae
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
694
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
5a9dd8ae
编写于
10月 17, 2017
作者:
G
gongweibao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add gpu
上级
d5a3745f
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
77 addition
and
8 deletion
+77
-8
paddle/operators/block_expand_op.cc
paddle/operators/block_expand_op.cc
+13
-2
paddle/operators/block_expand_op.cu
paddle/operators/block_expand_op.cu
+24
-0
paddle/operators/block_expand_op.h
paddle/operators/block_expand_op.h
+40
-6
未找到文件。
paddle/operators/block_expand_op.cc
浏览文件 @
5a9dd8ae
...
...
@@ -109,7 +109,18 @@ class BlockExpandGradOp : public framework::OperatorWithKernel {
using
framework
::
OperatorWithKernel
::
OperatorWithKernel
;
protected:
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{}
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
using
namespace
framework
;
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"X"
),
"Input(X) should not be null"
);
PADDLE_ENFORCE
(
ctx
->
HasOutput
(
"Out"
),
"Output of BlockExpandOp op should not be null."
);
PADDLE_ENFORCE
(
ctx
->
HasInput
(
framework
::
GradVarName
(
"Out"
)),
"Input(Out@GRAD) should not be null"
);
auto
in_dim
=
ctx
->
GetInputDim
(
"X"
);
ctx
->
SetOutputDim
(
GradVarName
(
"Out"
),
in_dim
);
}
};
}
// namespace operators
...
...
@@ -117,7 +128,7 @@ class BlockExpandGradOp : public framework::OperatorWithKernel {
namespace
ops
=
paddle
::
operators
;
REGISTER_OP
(
block_expand
,
ops
::
BlockExpandOp
,
ops
::
BlockExpandOpMaker
,
block_expand_grad
,
ops
::
BlockExpand
OpGrad
);
block_expand_grad
,
ops
::
BlockExpand
GradOp
);
REGISTER_OP_CPU_KERNEL
(
block_expand
,
ops
::
BlockExpandKernel
<
paddle
::
platform
::
CPUPlace
,
float
>
);
REGISTER_OP_CPU_KERNEL
(
...
...
paddle/operators/block_expand_op.cu
浏览文件 @
5a9dd8ae
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#define EIGEN_USE_GPU
#include "paddle/operators/block_expand_op.h"
namespace
ops
=
paddle
::
operators
;
REGISTER_OP_GPU_KERNEL
(
block_expand
,
ops
::
BlockExpandKernel
<
paddle
::
platform
::
GPUPlace
,
float
>
);
REGISTER_OP_GPU_KERNEL
(
block_expand_grad
,
ops
::
BlockExpandGradKernel
<
paddle
::
platform
::
GPUPlace
,
float
>
);
paddle/operators/block_expand_op.h
浏览文件 @
5a9dd8ae
...
...
@@ -69,12 +69,12 @@ class BlockExpandKernel : public framework::OpKernel<T> {
stride_width
,
padding_height
,
padding_width
,
outputHeight
,
outputWidth
);
for
(
int
i
=
0
;
i
<
N
;
i
++
)
{
Tensor
src
=
in
->
Slice
<
T
>
(
i
,
i
+
1
).
Resize
(
C
,
img_height
,
img_width
);
Tensor
dst
=
out
->
Slice
<
T
>
(
i
,
i
+
1
).
Resize
(
outputHeight
,
outputWidth
,
C
,
block_height
,
block_width
);
math
::
Im2ColFunctor
<
math
::
ColFormat
::
kOCF
,
Place
,
T
>
(
ctx
,
src
,
dst
,
stride_height
,
stride_width
,
padding_height
,
padding_width
);
Tensor
src
=
in
->
Slice
<
T
>
(
i
,
i
+
1
).
Resize
(
{
C
,
img_height
,
img_width
}
);
Tensor
dst
=
out
->
Slice
<
T
>
(
i
,
i
+
1
).
Resize
(
{
outputHeight
,
outputWidth
,
C
,
block_height
,
block_width
}
);
math
::
Im2ColFunctor
<
math
::
ColFormat
::
kOCF
,
Place
,
T
>
f
;
f
(
ctx
.
device_context
(),
src
,
dst
,
stride_height
,
stride_width
,
padding_height
,
padding_width
);
}
}
};
...
...
@@ -84,6 +84,40 @@ class BlockExpandGradKernel : public framework::OpKernel<T> {
public:
void
Compute
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
using
namespace
framework
;
auto
*
in
=
ctx
.
Input
<
Tensor
>
(
"X"
);
auto
*
out
=
ctx
.
Input
<
Tensor
>
(
"Out"
);
auto
*
out_grad
=
ctx
.
Output
<
Tensor
>
(
GradVarName
(
"Out"
));
out_grad
->
mutable_data
<
T
>
(
ctx
.
GetPlace
());
auto
in_dim
=
in
->
dims
();
int
N
=
in_dim
[
0
];
int
C
=
in_dim
[
1
];
int
img_height
=
in_dim
[
2
];
int
img_width
=
in_dim
[
3
];
int
block_height
=
ctx
.
Attr
<
int
>
(
"blockHeight"
);
int
block_width
=
ctx
.
Attr
<
int
>
(
"blockWidth"
);
int
stride_height
=
ctx
.
Attr
<
int
>
(
"strideHeight"
);
int
stride_width
=
ctx
.
Attr
<
int
>
(
"strideWidth"
);
int
padding_height
=
ctx
.
Attr
<
int
>
(
"paddingHeight"
);
int
padding_width
=
ctx
.
Attr
<
int
>
(
"paddingWidth"
);
int
outputHeight
=
0
;
int
outputWidth
=
0
;
get_blockexpand_output_shape
(
img_height
,
img_width
,
block_height
,
block_width
,
stride_height
,
stride_width
,
padding_height
,
padding_width
,
outputHeight
,
outputWidth
);
for
(
int
i
=
0
;
i
<
N
;
i
++
)
{
Tensor
dst
=
out_grad
->
Slice
<
T
>
(
i
,
i
+
1
).
Resize
({
C
,
img_height
,
img_width
});
Tensor
src
=
out
->
Slice
<
T
>
(
i
,
i
+
1
).
Resize
(
{
outputHeight
,
outputWidth
,
C
,
block_height
,
block_width
});
math
::
Im2ColFunctor
<
math
::
ColFormat
::
kOCF
,
Place
,
T
>
f
;
f
(
ctx
.
device_context
(),
src
,
dst
,
stride_height
,
stride_width
,
padding_height
,
padding_width
);
}
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录