Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
e2e82bde
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看板
提交
e2e82bde
编写于
10月 11, 2018
作者:
M
minqiyang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Accelerate Reshape op
上级
e1904ac2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
51 addition
and
36 deletion
+51
-36
paddle/fluid/operators/reshape_op.cc
paddle/fluid/operators/reshape_op.cc
+48
-34
paddle/fluid/operators/sequence_concat_op.cc
paddle/fluid/operators/sequence_concat_op.cc
+3
-2
未找到文件。
paddle/fluid/operators/reshape_op.cc
浏览文件 @
e2e82bde
...
@@ -164,7 +164,7 @@ dimension value will be copied from Input(X) at runtime. Note that the index of
...
@@ -164,7 +164,7 @@ dimension value will be copied from Input(X) at runtime. Note that the index of
[2, 3, 4], Attr(shape) = [2, 3, 2, 0] is an invalid input.
[2, 3, 4], Attr(shape) = [2, 3, 2, 0] is an invalid input.
3. Input(Shape) has a higher priority than Attr(shape) if it is provided, while
3. Input(Shape) has a higher priority than Attr(shape) if it is provided, while
Attr(shape) still should be set correctly to gurantee shape inference in
Attr(shape) still should be set correctly to gurantee shape inference in
compile-time.
compile-time.
)DOC"
);
)DOC"
);
...
@@ -195,6 +195,7 @@ class ReshapeGradOp : public framework::OperatorWithKernel {
...
@@ -195,6 +195,7 @@ class ReshapeGradOp : public framework::OperatorWithKernel {
}
}
};
};
template
<
typename
T
>
class
ReshapeKernel
{
class
ReshapeKernel
{
public:
public:
void
operator
()(
const
framework
::
ExecutionContext
&
ctx
)
const
{
void
operator
()(
const
framework
::
ExecutionContext
&
ctx
)
const
{
...
@@ -227,12 +228,15 @@ class ReshapeKernel {
...
@@ -227,12 +228,15 @@ class ReshapeKernel {
"sequence_reshape op."
);
"sequence_reshape op."
);
}
}
out
->
mutable_data
(
ctx
.
GetPlace
(),
in
->
type
());
if
(
in
->
data
<
T
>
()
!=
framework
::
TensorCopySync
(
*
in
,
ctx
.
GetPlace
(),
out
);
reinterpret_cast
<
T
*>
(
out
->
mutable_data
(
ctx
.
GetPlace
(),
in
->
type
())))
{
framework
::
TensorCopySync
(
*
in
,
ctx
.
GetPlace
(),
out
);
}
out
->
Resize
(
out_dims
);
out
->
Resize
(
out_dims
);
}
}
};
};
template
<
typename
T
>
class
ReshapeGradKernel
{
class
ReshapeGradKernel
{
public:
public:
void
operator
()(
const
framework
::
ExecutionContext
&
ctx
)
const
{
void
operator
()(
const
framework
::
ExecutionContext
&
ctx
)
const
{
...
@@ -240,8 +244,9 @@ class ReshapeGradKernel {
...
@@ -240,8 +244,9 @@ class ReshapeGradKernel {
auto
*
d_x
=
ctx
.
Output
<
framework
::
Tensor
>
(
framework
::
GradVarName
(
"X"
));
auto
*
d_x
=
ctx
.
Output
<
framework
::
Tensor
>
(
framework
::
GradVarName
(
"X"
));
auto
in_dims
=
d_x
->
dims
();
auto
in_dims
=
d_x
->
dims
();
d_x
->
mutable_data
(
ctx
.
GetPlace
(),
d_out
->
type
());
if
(
d_out
->
data
<
T
>
()
!=
d_x
->
mutable_data
(
ctx
.
GetPlace
(),
d_out
->
type
()))
{
framework
::
TensorCopySync
(
*
d_out
,
ctx
.
GetPlace
(),
d_x
);
framework
::
TensorCopySync
(
*
d_out
,
ctx
.
GetPlace
(),
d_x
);
}
d_x
->
Resize
(
in_dims
);
d_x
->
Resize
(
in_dims
);
}
}
};
};
...
@@ -259,7 +264,6 @@ class Reshape2Op : public ReshapeOp {
...
@@ -259,7 +264,6 @@ class Reshape2Op : public ReshapeOp {
:
ReshapeOp
(
type
,
inputs
,
outputs
,
attrs
)
{}
:
ReshapeOp
(
type
,
inputs
,
outputs
,
attrs
)
{}
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
void
InferShape
(
framework
::
InferShapeContext
*
ctx
)
const
override
{
ReshapeOp
::
InferShape
(
ctx
);
PADDLE_ENFORCE
(
ctx
->
HasOutput
(
"XShape"
),
PADDLE_ENFORCE
(
ctx
->
HasOutput
(
"XShape"
),
"Output(XShape) of ReshapeOp should not be null."
);
"Output(XShape) of ReshapeOp should not be null."
);
const
auto
&
x_dims
=
ctx
->
GetInputDim
(
"X"
);
const
auto
&
x_dims
=
ctx
->
GetInputDim
(
"X"
);
...
@@ -270,6 +274,8 @@ class Reshape2Op : public ReshapeOp {
...
@@ -270,6 +274,8 @@ class Reshape2Op : public ReshapeOp {
}
}
ctx
->
SetOutputDim
(
"XShape"
,
framework
::
make_ddim
(
xshape_dims
));
ctx
->
SetOutputDim
(
"XShape"
,
framework
::
make_ddim
(
xshape_dims
));
ctx
->
ShareLoD
(
"X"
,
/*->*/
"XShape"
);
ctx
->
ShareLoD
(
"X"
,
/*->*/
"XShape"
);
ReshapeOp
::
InferShape
(
ctx
);
}
}
};
};
...
@@ -335,38 +341,46 @@ namespace ops = paddle::operators;
...
@@ -335,38 +341,46 @@ namespace ops = paddle::operators;
REGISTER_OPERATOR
(
reshape
,
ops
::
ReshapeOp
,
ops
::
ReshapeOpMaker
,
REGISTER_OPERATOR
(
reshape
,
ops
::
ReshapeOp
,
ops
::
ReshapeOpMaker
,
paddle
::
framework
::
DefaultGradOpDescMaker
<
true
>
);
paddle
::
framework
::
DefaultGradOpDescMaker
<
true
>
);
REGISTER_OPERATOR
(
reshape_grad
,
ops
::
ReshapeGradOp
);
REGISTER_OPERATOR
(
reshape_grad
,
ops
::
ReshapeGradOp
);
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape
,
float
,
ops
::
ReshapeKernel
,
double
,
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape
,
float
,
ops
::
ReshapeKernel
<
float
>
,
ops
::
ReshapeKernel
,
int
,
ops
::
ReshapeKernel
,
double
,
ops
::
ReshapeKernel
<
double
>
,
int
,
int64_t
,
ops
::
ReshapeKernel
);
ops
::
ReshapeKernel
<
int
>
,
int64_t
,
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape_grad
,
float
,
ops
::
ReshapeGradKernel
,
ops
::
ReshapeKernel
<
int64_t
>
);
double
,
ops
::
ReshapeGradKernel
,
int
,
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape_grad
,
float
,
ops
::
ReshapeGradKernel
,
int64_t
,
ops
::
ReshapeGradKernel
<
float
>
,
double
,
ops
::
ReshapeGradKernel
);
ops
::
ReshapeGradKernel
<
double
>
,
int
,
ops
::
ReshapeGradKernel
<
int
>
,
int64_t
,
ops
::
ReshapeGradKernel
<
int64_t
>
);
REGISTER_OPERATOR
(
reshape2
,
ops
::
Reshape2Op
,
ops
::
Reshape2OpMaker
,
REGISTER_OPERATOR
(
reshape2
,
ops
::
Reshape2Op
,
ops
::
Reshape2OpMaker
,
ops
::
Reshape2GradMaker
);
ops
::
Reshape2GradMaker
);
REGISTER_OPERATOR
(
reshape2_grad
,
ops
::
Reshape2GradOp
);
REGISTER_OPERATOR
(
reshape2_grad
,
ops
::
Reshape2GradOp
);
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape2
,
float
,
ops
::
ReshapeKernel
,
double
,
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape2
,
float
,
ops
::
ReshapeKernel
<
float
>
,
ops
::
ReshapeKernel
,
int
,
ops
::
ReshapeKernel
,
double
,
ops
::
ReshapeKernel
<
double
>
,
int
,
int64_t
,
ops
::
ReshapeKernel
);
ops
::
ReshapeKernel
<
int
>
,
int64_t
,
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape2_grad
,
float
,
ops
::
ReshapeGradKernel
,
ops
::
ReshapeKernel
<
int64_t
>
);
double
,
ops
::
ReshapeGradKernel
,
int
,
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape2_grad
,
float
,
ops
::
ReshapeGradKernel
,
int64_t
,
ops
::
ReshapeGradKernel
<
float
>
,
double
,
ops
::
ReshapeGradKernel
);
ops
::
ReshapeGradKernel
<
double
>
,
int
,
ops
::
ReshapeGradKernel
<
int
>
,
int64_t
,
ops
::
ReshapeGradKernel
<
int64_t
>
);
#ifdef PADDLE_WITH_CUDA
#ifdef PADDLE_WITH_CUDA
REGISTER_OP_CUDA_KERNEL_FUNCTOR
(
reshape
,
float
,
ops
::
ReshapeKernel
,
double
,
REGISTER_OP_CUDA_KERNEL_FUNCTOR
(
reshape
,
float
,
ops
::
ReshapeKernel
<
float
>
,
ops
::
ReshapeKernel
,
int
,
ops
::
ReshapeKernel
,
double
,
ops
::
ReshapeKernel
<
double
>
,
int
,
int64_t
,
ops
::
ReshapeKernel
);
ops
::
ReshapeKernel
<
int
>
,
int64_t
,
REGISTER_OP_CUDA_KERNEL_FUNCTOR
(
reshape_grad
,
float
,
ops
::
ReshapeGradKernel
,
ops
::
ReshapeKernel
<
int64_t
>
);
double
,
ops
::
ReshapeGradKernel
,
int
,
REGISTER_OP_CUDA_KERNEL_FUNCTOR
(
reshape_grad
,
float
,
ops
::
ReshapeGradKernel
,
int64_t
,
ops
::
ReshapeGradKernel
<
float
>
,
double
,
ops
::
ReshapeGradKernel
);
ops
::
ReshapeGradKernel
<
double
>
,
int
,
REGISTER_OP_CUDA_KERNEL_FUNCTOR
(
reshape2
,
float
,
ops
::
ReshapeKernel
,
double
,
ops
::
ReshapeGradKernel
<
int
>
,
int64_t
,
ops
::
ReshapeKernel
,
int
,
ops
::
ReshapeKernel
,
ops
::
ReshapeGradKernel
<
int64_t
>
);
int64_t
,
ops
::
ReshapeKernel
);
REGISTER_OP_CUDA_KERNEL_FUNCTOR
(
reshape2
,
float
,
ops
::
ReshapeKernel
<
float
>
,
REGISTER_OP_CUDA_KERNEL_FUNCTOR
(
reshape2_grad
,
float
,
ops
::
ReshapeGradKernel
,
double
,
ops
::
ReshapeKernel
<
double
>
,
int
,
double
,
ops
::
ReshapeGradKernel
,
int
,
ops
::
ReshapeKernel
<
int
>
,
int64_t
,
ops
::
ReshapeGradKernel
,
int64_t
,
ops
::
ReshapeKernel
<
int64_t
>
);
ops
::
ReshapeGradKernel
);
REGISTER_OP_CUDA_KERNEL_FUNCTOR
(
reshape2_grad
,
float
,
ops
::
ReshapeGradKernel
<
float
>
,
double
,
ops
::
ReshapeGradKernel
<
double
>
,
int
,
ops
::
ReshapeGradKernel
<
int
>
,
int64_t
,
ops
::
ReshapeGradKernel
<
int64_t
>
);
#endif
#endif
paddle/fluid/operators/sequence_concat_op.cc
浏览文件 @
e2e82bde
...
@@ -90,11 +90,12 @@ REGISTER_OPERATOR(sequence_concat, paddle::framework::OperatorWithKernel,
...
@@ -90,11 +90,12 @@ REGISTER_OPERATOR(sequence_concat, paddle::framework::OperatorWithKernel,
paddle
::
framework
::
DefaultGradOpDescMaker
<
false
>
);
paddle
::
framework
::
DefaultGradOpDescMaker
<
false
>
);
template
<
typename
T
>
template
<
typename
T
>
using
Kernel
=
op
::
SeqConcatKernel
<
paddle
::
platform
::
CPUDeviceContext
,
T
>
;
using
Kernel
=
op
::
SeqConcatKernel
<
paddle
::
platform
::
CPUDeviceContext
,
T
>
;
REGISTER_OP_CPU_KERNEL
(
sequence_concat
,
Kernel
<
float
>
,
Kernel
<
double
>
);
REGISTER_OP_CPU_KERNEL
(
sequence_concat
,
Kernel
<
float
>
,
Kernel
<
double
>
,
Kernel
<
int64_t
>
);
REGISTER_OPERATOR
(
sequence_concat_grad
,
paddle
::
framework
::
OperatorWithKernel
,
REGISTER_OPERATOR
(
sequence_concat_grad
,
paddle
::
framework
::
OperatorWithKernel
,
op
::
SeqConcatGradShapeInferer
);
op
::
SeqConcatGradShapeInferer
);
template
<
typename
T
>
template
<
typename
T
>
using
GradKernel
=
using
GradKernel
=
op
::
SeqConcatGradKernel
<
paddle
::
platform
::
CPUDeviceContext
,
T
>
;
op
::
SeqConcatGradKernel
<
paddle
::
platform
::
CPUDeviceContext
,
T
>
;
REGISTER_OP_CPU_KERNEL
(
sequence_concat_grad
,
GradKernel
<
float
>
,
REGISTER_OP_CPU_KERNEL
(
sequence_concat_grad
,
GradKernel
<
float
>
,
GradKernel
<
double
>
);
GradKernel
<
double
>
,
GradKernel
<
int64_t
>
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录