Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
76fc1a82
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看板
提交
76fc1a82
编写于
11月 20, 2017
作者:
W
wanghaox
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
for code review 4
上级
52f2366d
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
20 addition
and
29 deletion
+20
-29
paddle/operators/math/maxouting.cc
paddle/operators/math/maxouting.cc
+3
-7
paddle/operators/math/maxouting.cu.cc
paddle/operators/math/maxouting.cu.cc
+3
-2
paddle/operators/math/maxouting.h
paddle/operators/math/maxouting.h
+1
-1
paddle/operators/maxout_op.cc
paddle/operators/maxout_op.cc
+7
-8
paddle/operators/maxout_op.cu.cc
paddle/operators/maxout_op.cu.cc
+0
-1
paddle/operators/maxout_op.h
paddle/operators/maxout_op.h
+4
-7
python/paddle/v2/fluid/tests/test_maxout_op.py
python/paddle/v2/fluid/tests/test_maxout_op.py
+2
-3
未找到文件。
paddle/operators/math/maxouting.cc
浏览文件 @
76fc1a82
...
...
@@ -18,10 +18,7 @@ namespace paddle {
namespace
operators
{
namespace
math
{
/*
* All tensors are in NCHW format.
* groups mustbe > 1
*/
// All tensors are in NCHW format, and the groups must be greater than 1
template
<
typename
T
>
class
MaxOutFunctor
<
platform
::
CPUPlace
,
T
>
{
public:
...
...
@@ -44,7 +41,6 @@ class MaxOutFunctor<platform::CPUPlace, T> {
for
(
int
c
=
0
;
c
<
output_channels
;
++
c
)
{
int
new_cindex
=
fea_size
*
c
;
for
(
int
f
=
0
;
f
<
fea_size
;
++
f
)
{
// T ele = maxout_process.initial();
T
ele
=
static_cast
<
T
>
(
-
FLT_MAX
);
for
(
int
ph
=
0
;
ph
<
groups
;
++
ph
)
{
T
x
=
input_data
[(
new_bindex
+
new_cindex
)
*
groups
...
...
@@ -65,7 +61,7 @@ class MaxOutGradFunctor<platform::CPUPlace, T> {
public:
void
operator
()(
const
platform
::
DeviceContext
&
context
,
const
framework
::
Tensor
&
input
,
framework
::
Tensor
&
input_grad
,
framework
::
Tensor
*
input_grad
,
const
framework
::
Tensor
&
output
,
const
framework
::
Tensor
&
output_grad
,
int
groups
)
{
...
...
@@ -77,7 +73,7 @@ public:
const
T
*
input_data
=
input
.
data
<
T
>
();
const
T
*
output_data
=
output
.
data
<
T
>
();
const
T
*
output_grad_data
=
output_grad
.
data
<
T
>
();
T
*
input_grad_data
=
input_grad
.
mutable_data
<
T
>
(
context
.
GetPlace
());
T
*
input_grad_data
=
input_grad
->
mutable_data
<
T
>
(
context
.
GetPlace
());
for
(
int
i
=
0
;
i
<
batch_size
;
++
i
)
{
int
blen
=
fea_size
*
output_channels
*
i
;
...
...
paddle/operators/math/maxouting.cu
→
paddle/operators/math/maxouting.cu
.cc
浏览文件 @
76fc1a82
...
...
@@ -112,7 +112,8 @@ template <typename T>
class
MaxOutGradFunctor
<
platform
::
GPUPlace
,
T
>
{
public:
void
operator
()(
const
platform
::
DeviceContext
&
context
,
const
framework
::
Tensor
&
input
,
framework
::
Tensor
&
input_grad
,
const
framework
::
Tensor
&
input
,
framework
::
Tensor
*
input_grad
,
const
framework
::
Tensor
&
output
,
const
framework
::
Tensor
&
output_grad
,
int
groups
)
{
...
...
@@ -127,7 +128,7 @@ class MaxOutGradFunctor<platform::GPUPlace, T> {
const
T
*
input_data
=
input
.
data
<
T
>
();
const
T
*
output_data
=
output
.
data
<
T
>
();
const
T
*
output_grad_data
=
output_grad
.
data
<
T
>
();
T
*
input_grad_data
=
input_grad
.
mutable_data
<
T
>
(
context
.
GetPlace
());
T
*
input_grad_data
=
input_grad
->
mutable_data
<
T
>
(
context
.
GetPlace
());
int
nthreads
=
output
.
numel
();
int
blocks
=
(
nthreads
+
1024
-
1
)
/
1024
;
dim3
threads
(
1024
,
1
);
...
...
paddle/operators/math/maxouting.h
浏览文件 @
76fc1a82
...
...
@@ -38,7 +38,7 @@ class MaxOutGradFunctor {
public:
void
operator
()(
const
platform
::
DeviceContext
&
context
,
const
framework
::
Tensor
&
input
,
framework
::
Tensor
&
input_grad
,
framework
::
Tensor
*
input_grad
,
const
framework
::
Tensor
&
output
,
const
framework
::
Tensor
&
output_grad
,
int
groups
);
};
...
...
paddle/operators/maxout_op.cc
浏览文件 @
76fc1a82
...
...
@@ -34,14 +34,13 @@ class MaxOutOpMaker : public framework::OpProtoAndCheckerMaker {
"width of feature."
);
AddAttr
<
int
>
(
"groups"
,
R"DOC(The group number of input layer.
R"DOC("Specifies how many groups the input tensor will be split"
"in the channel dimension. And the number of output channel is "
"the number of channels divided by groups.."
)DOC"
);
AddComment
(
R"DOC(
- Input: NCHW.
- Output: The feature map size of output is the same as the input.
The output_channel is (input channel) / groups
So groups should be larger than 1, and the num of channels should be able
to be devided by groups.
Assumed the input shape is (N, Ci, H, W).
The output shape is (N, Co, H, W). Then `Co = Ci / groups`.
math:
y_{si+j} = \max_k x_{gsi + sk + j}
...
...
@@ -65,10 +64,10 @@ class MaxOutOp : public framework::OperatorWithKernel {
public:
using
framework
::
OperatorWithKernel
::
OperatorWithKernel
;
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"X"
),
"Input(X) of
m
axoutOp"
PADDLE_ENFORCE
(
ctx
->
HasInput
(
"X"
),
"Input(X) of
M
axoutOp"
"should not be null."
);
PADDLE_ENFORCE
(
ctx
->
HasOutput
(
"Out"
),
"Output(Out) of
m
axoutOp should not be null."
);
"Output(Out) of
M
axoutOp should not be null."
);
auto
in_x_dims
=
ctx
->
GetInputDim
(
"X"
);
int
groups
=
ctx
->
Attrs
().
Get
<
int
>
(
"groups"
);
// check groups > 1
...
...
paddle/operators/maxout_op.cu
→
paddle/operators/maxout_op.cu
.cc
浏览文件 @
76fc1a82
...
...
@@ -12,7 +12,6 @@
See the License for the specific language governing permissions and
limitations under the License. */
#define EIGEN_USE_GPU
#include "paddle/operators/maxout_op.h"
namespace
ops
=
paddle
::
operators
;
...
...
paddle/operators/maxout_op.h
浏览文件 @
76fc1a82
...
...
@@ -31,9 +31,7 @@ class MaxOutKernel : public framework::OpKernel<T> {
Tensor
*
out
=
context
.
Output
<
Tensor
>
(
"Out"
);
int
groups
=
context
.
template
Attr
<
int
>(
"groups"
);
paddle
::
operators
::
math
::
MaxOutFunctor
<
Place
,
T
>
maxout_forward
;
math
::
MaxOutFunctor
<
Place
,
T
>
maxout_forward
;
maxout_forward
(
context
.
device_context
(),
*
in_x
,
out
,
groups
);
}
};
...
...
@@ -53,10 +51,9 @@ class MaxOutGradKernel : public framework::OpKernel<T> {
if
(
in_x_grad
)
{
in_x_grad
->
mutable_data
<
T
>
(
context
.
GetPlace
());
zero
(
device_ctx
,
in_x_grad
,
static_cast
<
T
>
(
0.0
));
paddle
::
operators
::
math
::
MaxOutGradFunctor
<
Place
,
T
>
maxout_backward
;
maxout_backward
(
context
.
device_context
(),
*
in_x
,
*
in_x_grad
,
*
out
,
*
out_grad
,
groups
);
math
::
MaxOutGradFunctor
<
Place
,
T
>
maxout_backward
;
maxout_backward
(
context
.
device_context
(),
*
in_x
,
in_x_grad
,
*
out
,
*
out_grad
,
groups
);
}
}
};
...
...
python/paddle/v2/fluid/tests/test_maxout_op.py
浏览文件 @
76fc1a82
...
...
@@ -3,7 +3,7 @@ import numpy as np
from
op_test
import
OpTest
def
maxout_forward_naive
(
input
,
groups
,
num_channels
):
def
maxout_forward_naive
(
input
,
groups
):
s0
,
s1
,
s2
,
s3
=
input
.
shape
return
np
.
ndarray
([
s0
,
s1
/
groups
,
groups
,
s2
,
s3
],
\
buffer
=
input
,
dtype
=
input
.
dtype
).
max
(
axis
=
(
2
))
...
...
@@ -18,7 +18,7 @@ class TestMaxOutOp(OpTest):
self
.
num_channels
).
astype
(
"float32"
)
self
.
inputs
=
{
'X'
:
input
}
self
.
attrs
=
{
'groups'
:
self
.
groups
,
'num_channels'
:
self
.
num_channels
}
self
.
attrs
=
{
'groups'
:
self
.
groups
}
self
.
outputs
=
{
'Out'
:
output
.
astype
(
'float32'
)}
...
...
@@ -32,7 +32,6 @@ class TestMaxOutOp(OpTest):
self
.
MaxOut_forward_naive
=
maxout_forward_naive
self
.
shape
=
[
100
,
6
,
2
,
2
]
self
.
groups
=
2
self
.
num_channels
=
6
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录