Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
57e68e57
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看板
提交
57e68e57
编写于
11月 28, 2017
作者:
S
sweetsky0901
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify for code review by qingqing 2nd
上级
f9c2a5c3
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
72 addition
and
85 deletion
+72
-85
paddle/operators/math/unpooling.cu
paddle/operators/math/unpooling.cu
+22
-26
paddle/operators/unpool_op.cc
paddle/operators/unpool_op.cc
+20
-29
paddle/operators/unpool_op.cu.cc
paddle/operators/unpool_op.cu.cc
+9
-9
paddle/operators/unpool_op.h
paddle/operators/unpool_op.h
+3
-3
python/paddle/v2/fluid/tests/test_unpool_op.py
python/paddle/v2/fluid/tests/test_unpool_op.py
+18
-18
未找到文件。
paddle/operators/math/unpooling.cu
浏览文件 @
57e68e57
...
...
@@ -29,19 +29,19 @@ __global__ void KernelUnpool2dMax(const int nthreads,
T
*
output_data
,
const
int
output_height
,
const
int
output_width
)
{
int
bsiz
e
=
input_height
*
input_width
*
channels
;
int
csiz
e
=
input_height
*
input_width
;
int
out_
bsiz
e
=
output_height
*
output_width
*
channels
;
int
out_c
siz
e
=
output_height
*
output_width
;
int
in_n_strid
e
=
input_height
*
input_width
*
channels
;
int
in_c_strid
e
=
input_height
*
input_width
;
int
out_
n_strid
e
=
output_height
*
output_width
*
channels
;
int
out_c
_strid
e
=
output_height
*
output_width
;
int
index
=
blockIdx
.
x
*
blockDim
.
x
+
threadIdx
.
x
;
int
offset
=
blockDim
.
x
*
gridDim
.
x
;
for
(
int
i
=
index
;
i
<
nthreads
;
i
+=
offset
)
{
int
bidx
=
i
/
bsiz
e
;
int
boffset
=
i
%
bsiz
e
;
int
cidx
=
boffset
/
csiz
e
;
int
out_offset
=
bidx
*
out_
bsize
+
cidx
*
out_csiz
e
;
int
bidx
=
i
/
in_n_strid
e
;
int
boffset
=
i
%
in_n_strid
e
;
int
cidx
=
boffset
/
in_c_strid
e
;
int
out_offset
=
bidx
*
out_
n_stride
+
cidx
*
out_c_strid
e
;
int
out_index
=
indices_data
[
i
];
PADDLE_ASSERT
(
out_index
<
(
output_height
*
output_width
)
);
PADDLE_ASSERT
(
out_index
<
out_c_stride
);
output_data
[
out_offset
+
out_index
]
=
input_data
[
i
];
}
}
...
...
@@ -57,19 +57,19 @@ __global__ void KernelUnpool2dMaxGrad(const int nthreads,
const
int
output_height
,
const
int
output_width
,
T
*
input_grad
)
{
int
bsiz
e
=
input_height
*
input_width
*
channels
;
int
csiz
e
=
input_height
*
input_width
;
int
out_
bsiz
e
=
output_height
*
output_width
*
channels
;
int
out_c
siz
e
=
output_height
*
output_width
;
int
in_n_strid
e
=
input_height
*
input_width
*
channels
;
int
in_c_strid
e
=
input_height
*
input_width
;
int
out_
n_strid
e
=
output_height
*
output_width
*
channels
;
int
out_c
_strid
e
=
output_height
*
output_width
;
int
index
=
blockIdx
.
x
*
blockDim
.
x
+
threadIdx
.
x
;
int
offset
=
blockDim
.
x
*
gridDim
.
x
;
for
(
int
i
=
index
;
i
<
nthreads
;
i
+=
offset
)
{
int
bidx
=
i
/
bsiz
e
;
int
boffset
=
i
%
bsiz
e
;
int
cidx
=
boffset
/
csiz
e
;
int
out_offset
=
bidx
*
out_
bsize
+
cidx
*
out_csiz
e
;
int
bidx
=
i
/
in_n_strid
e
;
int
boffset
=
i
%
in_n_strid
e
;
int
cidx
=
boffset
/
in_c_strid
e
;
int
out_offset
=
bidx
*
out_
n_stride
+
cidx
*
out_c_strid
e
;
int
out_index
=
indices_data
[
i
];
PADDLE_ASSERT
(
out_index
<
(
output_height
*
output_width
)
);
PADDLE_ASSERT
(
out_index
<
out_c_stride
);
input_grad
[
i
]
=
output_grad
[
out_offset
+
out_index
];
}
}
...
...
@@ -93,10 +93,8 @@ class Unpool2dMaxFunctor<platform::GPUPlace, T, T2> {
const
T2
*
indices_data
=
indices
.
data
<
T2
>
();
T
*
output_data
=
output
->
mutable_data
<
T
>
(
context
.
GetPlace
());
int
nthreads
=
batch_size
*
output_channels
*
input_height
*
input_width
;
int
blocks
=
(
nthreads
+
1024
-
1
)
/
1024
;
dim3
threads
(
1024
,
1
);
dim3
grid
(
blocks
,
1
);
int
threads
=
1024
;
int
grid
=
(
input
.
numel
()
+
threads
-
1
)
/
threads
;
KernelUnpool2dMax
<
T
,
T2
><<<
grid
,
threads
,
0
,
reinterpret_cast
<
const
platform
::
CUDADeviceContext
&>
(
context
)
...
...
@@ -129,10 +127,8 @@ class Unpool2dMaxGradFunctor<platform::GPUPlace, T, T2> {
const
T
*
output_grad_data
=
output_grad
.
data
<
T
>
();
T
*
input_grad_data
=
input_grad
->
mutable_data
<
T
>
(
context
.
GetPlace
());
int
nthreads
=
batch_size
*
output_channels
*
input_height
*
input_width
;
int
blocks
=
(
nthreads
+
1024
-
1
)
/
1024
;
dim3
threads
(
1024
,
1
);
dim3
grid
(
blocks
,
1
);
int
threads
=
1024
;
int
grid
=
(
input
.
numel
()
+
threads
-
1
)
/
threads
;
KernelUnpool2dMaxGrad
<
T
,
T2
><<<
grid
,
threads
,
0
,
reinterpret_cast
<
const
platform
::
CUDADeviceContext
&>
(
context
)
...
...
paddle/operators/unpool_op.cc
浏览文件 @
57e68e57
/* 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.
* Y
ou 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. */
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Indices
ou 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. */
#include "paddle/operators/unpool_op.h"
namespace
paddle
{
...
...
@@ -25,7 +25,7 @@ class Unpool2dOpMaker : public framework::OpProtoAndCheckerMaker {
"(Tensor) The input tensor of unpool operator. "
"The format of input tensor is NCHW. Where N is batch size, C is the "
"number of channels, H and W is the height and width of feature."
);
AddInput
(
"
Y
"
,
AddInput
(
"
Indices
"
,
"(Tensor) The input tensor of the indices given out by MaxPool2d. "
"The format of input tensor is NCHW. Where N is batch size, C is the "
"number of channels, H and W is the height and width of feature."
);
...
...
@@ -50,12 +50,10 @@ class Unpool2dOpMaker : public framework::OpProtoAndCheckerMaker {
"(string), unpooling type, can be
\"
max
\"
for max-unpooling "
)
.
InEnum
({
"max"
});
AddComment
(
R"DOC(
"input: the input Tensor to invert
indices: the indices given out by MaxPool2d
ksize – Size of the max pooling window.
stride – Stride of the max pooling window.
"It is set to kernel_size by default.
padding – Padding that was added to the input"
"Paper: http://www.matthewzeiler.com/wp-content/uploads/2017
/07/iccv2011.pdf
PyTorch: http://pytorch.org/docs/master/nn.html?highlight=unpool#
torch.nn.MaxUnpool2d"
)DOC"
);
}
};
...
...
@@ -79,27 +77,20 @@ public:
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"X"
),
"Input(X) of UnpoolOp"
"should not be null."
);
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"
Y"
),
"Input(Y
) of UnpoolOp"
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"
Indices"
),
"Input(Indices
) of UnpoolOp"
"should not be null."
);
PADDLE_ENFORCE
(
ctx
->
HasOutput
(
"Out"
),
"Output(Out) of UnpoolOp should not be null."
);
auto
in_x_dims
=
ctx
->
GetInputDim
(
"X"
);
auto
in_y_dims
=
ctx
->
GetInputDim
(
"
Y
"
);
auto
in_y_dims
=
ctx
->
GetInputDim
(
"
Indices
"
);
std
::
string
unpooling_type
=
ctx
->
Attrs
().
Get
<
std
::
string
>
(
"unpooling_type"
);
std
::
vector
<
int
>
ksize
=
ctx
->
Attrs
().
Get
<
std
::
vector
<
int
>>
(
"ksize"
);
std
::
vector
<
int
>
strides
=
ctx
->
Attrs
().
Get
<
std
::
vector
<
int
>>
(
"strides"
);
std
::
vector
<
int
>
paddings
=
ctx
->
Attrs
().
Get
<
std
::
vector
<
int
>>
(
"paddings"
);
PADDLE_ENFORCE
(
in_x_dims
.
size
()
==
4
,
"Unpooling intput must be of 4-dimensional."
);
for
(
int
i
=
0
;
i
<
4
;
++
i
)
{
PADDLE_ENFORCE
(
in_x_dims
[
i
]
==
in_y_dims
[
i
],
"X size must be eq Y size!"
);
}
PADDLE_ENFORCE_EQ
(
in_x_dims
,
in_y_dims
);
std
::
vector
<
int64_t
>
output_shape
({
in_x_dims
[
0
],
in_x_dims
[
1
]});
for
(
size_t
i
=
0
;
i
<
ksize
.
size
();
++
i
)
{
output_shape
.
push_back
(
...
...
paddle/operators/unpool_op.cu.cc
浏览文件 @
57e68e57
/* 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.
Y
ou may obtain a copy of the License at
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Indices
ou may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
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. */
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. */
#include "paddle/operators/unpool_op.h"
...
...
paddle/operators/unpool_op.h
浏览文件 @
57e68e57
...
...
@@ -2,7 +2,7 @@
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Y
ou may obtain a copy of the License at
Indices
ou may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
...
...
@@ -26,7 +26,7 @@ class UnpoolKernel : public framework::OpKernel<T> {
public:
void
Compute
(
const
framework
::
ExecutionContext
&
context
)
const
override
{
const
framework
::
Tensor
*
in_x
=
context
.
Input
<
framework
::
Tensor
>
(
"X"
);
const
framework
::
Tensor
*
in_y
=
context
.
Input
<
framework
::
Tensor
>
(
"
Y
"
);
const
framework
::
Tensor
*
in_y
=
context
.
Input
<
framework
::
Tensor
>
(
"
Indices
"
);
auto
*
out
=
context
.
Output
<
framework
::
Tensor
>
(
"Out"
);
std
::
string
unpooling_type
=
context
.
Attr
<
std
::
string
>
(
"unpooling_type"
);
std
::
vector
<
int
>
ksize
=
context
.
Attr
<
std
::
vector
<
int
>>
(
"ksize"
);
...
...
@@ -47,7 +47,7 @@ class UnpoolGradKernel : public framework::OpKernel<T> {
public:
void
Compute
(
const
framework
::
ExecutionContext
&
context
)
const
override
{
const
framework
::
Tensor
*
in_x
=
context
.
Input
<
framework
::
Tensor
>
(
"X"
);
const
framework
::
Tensor
*
in_y
=
context
.
Input
<
framework
::
Tensor
>
(
"
Y
"
);
const
framework
::
Tensor
*
in_y
=
context
.
Input
<
framework
::
Tensor
>
(
"
Indices
"
);
const
framework
::
Tensor
*
out
=
context
.
Input
<
framework
::
Tensor
>
(
"Out"
);
const
framework
::
Tensor
*
out_grad
=
context
.
Input
<
framework
::
Tensor
>
(
framework
::
GradVarName
(
"Out"
));
...
...
python/paddle/v2/fluid/tests/test_unpool_op.py
浏览文件 @
57e68e57
...
...
@@ -5,16 +5,16 @@ from op_test import OpTest
def
unpool2dmax_forward_naive
(
input
,
indices
,
ksize
,
strides
,
paddings
):
s0
,
s1
,
s2
,
s3
=
input
.
shape
out_
H
=
(
s2
-
1
)
*
strides
[
0
]
-
2
*
paddings
[
0
]
+
ksize
[
0
]
out_
W
=
(
s2
-
1
)
*
strides
[
1
]
-
2
*
paddings
[
1
]
+
ksize
[
1
]
out
=
np
.
zeros
((
s0
,
s1
,
out_
H
,
out_W
))
out_
hsize
=
(
s2
-
1
)
*
strides
[
0
]
-
2
*
paddings
[
0
]
+
ksize
[
0
]
out_
wsize
=
(
s2
-
1
)
*
strides
[
1
]
-
2
*
paddings
[
1
]
+
ksize
[
1
]
out
=
np
.
zeros
((
s0
,
s1
,
out_
hsize
,
out_wsize
))
for
nidx
in
xrange
(
s0
):
for
cidx
in
xrange
(
s1
):
for
h
in
xrange
(
s2
):
for
w
in
xrange
(
s3
):
index
=
indices
[
nidx
,
cidx
,
h
,
w
]
hidx
=
(
index
-
index
%
out_
W
)
/
out_W
widx
=
index
%
out_
W
hidx
=
(
index
-
index
%
out_
wsize
)
/
out_wsize
widx
=
index
%
out_
wsize
out
[
nidx
,
cidx
,
int
(
hidx
),
int
(
widx
)]
=
\
input
[
nidx
,
cidx
,
h
,
w
]
...
...
@@ -26,34 +26,34 @@ class TestUnpoolOp(OpTest):
self
.
op_type
=
"unpool"
self
.
init_test_case
()
pre_input
=
np
.
random
.
random
(
self
.
shape
).
astype
(
"float32"
)
N
,
C
,
H
,
W
=
pre_input
.
shape
H_out
=
(
H
-
self
.
ksize
[
0
]
+
2
*
self
.
paddings
[
0
])
/
\
nsize
,
csize
,
hsize
,
wsize
=
pre_input
.
shape
hsize_out
=
(
hsize
-
self
.
ksize
[
0
]
+
2
*
self
.
paddings
[
0
])
/
\
self
.
strides
[
0
]
+
1
W_out
=
(
W
-
self
.
ksize
[
1
]
+
2
*
self
.
paddings
[
1
])
/
\
wsize_out
=
(
wsize
-
self
.
ksize
[
1
]
+
2
*
self
.
paddings
[
1
])
/
\
self
.
strides
[
1
]
+
1
input
=
np
.
zeros
((
N
,
C
,
H_out
,
W
_out
))
indices
=
np
.
zeros
((
N
,
C
,
H_out
,
W
_out
))
for
i
in
xrange
(
H
_out
):
for
j
in
xrange
(
W
_out
):
input
=
np
.
zeros
((
nsize
,
csize
,
hsize_out
,
wsize
_out
))
indices
=
np
.
zeros
((
nsize
,
csize
,
hsize_out
,
wsize
_out
))
for
i
in
xrange
(
hsize
_out
):
for
j
in
xrange
(
wsize
_out
):
r_start
=
np
.
max
((
i
*
self
.
strides
[
0
]
-
self
.
paddings
[
0
],
0
))
r_end
=
np
.
min
((
i
*
self
.
strides
[
0
]
+
self
.
ksize
[
0
]
-
\
self
.
paddings
[
0
],
H
))
self
.
paddings
[
0
],
hsize
))
c_start
=
np
.
max
((
j
*
self
.
strides
[
1
]
-
self
.
paddings
[
1
],
0
))
c_end
=
np
.
min
((
j
*
self
.
strides
[
1
]
+
self
.
ksize
[
1
]
-
\
self
.
paddings
[
1
],
W
))
for
nidx
in
xrange
(
N
):
for
cidx
in
xrange
(
C
):
self
.
paddings
[
1
],
wsize
))
for
nidx
in
xrange
(
nsize
):
for
cidx
in
xrange
(
csize
):
x_masked
=
pre_input
[
nidx
,
cidx
,
r_start
:
r_end
,
\
c_start
:
c_end
]
input
[
nidx
,
cidx
,
i
,
j
]
=
x_masked
.
max
()
arg
=
x_masked
.
argmax
()
indices
[
nidx
,
cidx
,
i
,
j
]
=
\
(
r_start
+
arg
/
self
.
ksize
[
1
])
*
W
+
\
(
r_start
+
arg
/
self
.
ksize
[
1
])
*
wsize
+
\
c_start
+
arg
%
self
.
ksize
[
1
]
output
=
self
.
Unpool2d_forward_naive
(
input
,
indices
,
self
.
ksize
,
\
self
.
strides
,
self
.
paddings
).
astype
(
"float32"
)
self
.
inputs
=
{
'X'
:
input
.
astype
(
'float32'
),
'
Y
'
:
indices
.
astype
(
'int32'
)}
'
Indices
'
:
indices
.
astype
(
'int32'
)}
self
.
attrs
=
{
'strides'
:
self
.
strides
,
'paddings'
:
self
.
paddings
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录