Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
8cc09552
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看板
未验证
提交
8cc09552
编写于
1月 11, 2022
作者:
Y
YuanRisheng
提交者:
GitHub
1月 11, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor reshape grad kernel (#38833)
上级
be817719
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
161 addition
and
12 deletion
+161
-12
paddle/fluid/operators/reshape_op.cc
paddle/fluid/operators/reshape_op.cc
+52
-12
paddle/pten/core/kernel_alias_name.h
paddle/pten/core/kernel_alias_name.h
+3
-0
paddle/pten/kernels/reshape_grad_kernel.cc
paddle/pten/kernels/reshape_grad_kernel.cc
+75
-0
paddle/pten/kernels/reshape_grad_kernel.h
paddle/pten/kernels/reshape_grad_kernel.h
+31
-0
未找到文件。
paddle/fluid/operators/reshape_op.cc
浏览文件 @
8cc09552
...
...
@@ -21,6 +21,7 @@ limitations under the License. */
#include "paddle/pten/api/lib/utils/tensor_utils.h"
#include "paddle/pten/common/scalar_array.h"
#include "paddle/pten/include/core.h"
#include "paddle/pten/kernels/reshape_grad_kernel.h"
#include "paddle/pten/kernels/reshape_kernel.h"
namespace
paddle
{
namespace
framework
{
...
...
@@ -467,13 +468,27 @@ class ReshapeGradKernel {
void
operator
()(
const
framework
::
ExecutionContext
&
ctx
)
const
{
auto
*
d_out
=
ctx
.
Input
<
framework
::
Tensor
>
(
framework
::
GradVarName
(
"Out"
));
auto
*
d_x
=
ctx
.
Output
<
framework
::
Tensor
>
(
framework
::
GradVarName
(
"X"
));
auto
in_dims
=
d_x
->
dims
();
d_x
->
mutable_data
(
ctx
.
GetPlace
(),
d_out
->
type
());
framework
::
TensorCopy
(
*
d_out
,
ctx
.
GetPlace
(),
ctx
.
template
device_context
<
platform
::
DeviceContext
>(),
d_x
);
d_x
->
Resize
(
in_dims
);
auto
pt_d_x
=
paddle
::
experimental
::
MakePtenDenseTensor
(
*
d_x
);
auto
pt_d_out
=
paddle
::
experimental
::
MakePtenDenseTensor
(
*
d_out
);
if
(
platform
::
is_cpu_place
(
ctx
.
GetPlace
()))
{
auto
&
dev_ctx
=
ctx
.
device_context
<
platform
::
CPUDeviceContext
>
();
pten
::
ReshapeGradKernel
(
dev_ctx
,
*
pt_d_out
.
get
(),
pt_d_x
.
get
());
}
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
if
(
platform
::
is_gpu_place
(
ctx
.
GetPlace
()))
{
auto
&
dev_ctx
=
ctx
.
device_context
<
platform
::
CUDADeviceContext
>
();
pten
::
ReshapeGradKernel
(
dev_ctx
,
*
pt_d_out
.
get
(),
pt_d_x
.
get
());
}
#endif
#ifdef PADDLE_WITH_XPU
if
(
platform
::
is_xpu_place
(
ctx
.
GetPlace
()))
{
auto
&
dev_ctx
=
ctx
.
device_context
<
platform
::
XPUDeviceContext
>
();
pten
::
ReshapeGradKernel
(
dev_ctx
,
*
pt_d_out
.
get
(),
pt_d_x
.
get
());
}
#endif
}
};
...
...
@@ -482,14 +497,27 @@ class ReshapeDoubleGradKernel {
void
operator
()(
const
framework
::
ExecutionContext
&
ctx
)
const
{
auto
*
dd_x
=
ctx
.
Input
<
framework
::
Tensor
>
(
"DDX"
);
auto
*
dd_out
=
ctx
.
Output
<
framework
::
Tensor
>
(
"DDOut"
);
dd_out
->
mutable_data
(
ctx
.
GetPlace
(),
dd_x
->
type
());
auto
out_dims
=
dd_out
->
dims
();
auto
pt_dd_x
=
paddle
::
experimental
::
MakePtenDenseTensor
(
*
dd_x
);
auto
pt_dd_out
=
paddle
::
experimental
::
MakePtenDenseTensor
(
*
dd_out
);
dd_out
->
mutable_data
(
ctx
.
GetPlace
(),
dd_x
->
type
());
framework
::
TensorCopy
(
*
dd_x
,
ctx
.
GetPlace
(),
ctx
.
template
device_context
<
platform
::
DeviceContext
>(),
dd_out
);
dd_out
->
Resize
(
out_dims
);
if
(
platform
::
is_cpu_place
(
ctx
.
GetPlace
()))
{
auto
&
dev_ctx
=
ctx
.
device_context
<
platform
::
CPUDeviceContext
>
();
pten
::
ReshapeDoubleGradKernel
(
dev_ctx
,
*
pt_dd_x
.
get
(),
pt_dd_out
.
get
());
}
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
if
(
platform
::
is_gpu_place
(
ctx
.
GetPlace
()))
{
auto
&
dev_ctx
=
ctx
.
device_context
<
platform
::
CUDADeviceContext
>
();
pten
::
ReshapeDoubleGradKernel
(
dev_ctx
,
*
pt_dd_x
.
get
(),
pt_dd_out
.
get
());
}
#endif
#ifdef PADDLE_WITH_XPU
if
(
platform
::
is_xpu_place
(
ctx
.
GetPlace
()))
{
auto
&
dev_ctx
=
ctx
.
device_context
<
platform
::
XPUDeviceContext
>
();
pten
::
ReshapeDoubleGradKernel
(
dev_ctx
,
*
pt_dd_x
.
get
(),
pt_dd_out
.
get
());
}
#endif
}
};
...
...
@@ -624,6 +652,13 @@ class Reshape2GradOp : public framework::OperatorWithKernel {
return
framework
::
OpKernelType
(
expected_kernel_type
.
data_type_
,
tensor
.
place
(),
tensor
.
layout
());
}
framework
::
KernelSignature
GetExpectedPtenKernelArgs
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
return
framework
::
KernelSignature
(
"reshape_grad"
,
{
framework
::
GradVarName
(
"Out"
)},
{},
{
framework
::
GradVarName
(
"X"
)});
}
};
class
Reshape2DoubleGradOp
:
public
framework
::
OperatorWithKernel
{
...
...
@@ -660,6 +695,11 @@ class Reshape2DoubleGradOp : public framework::OperatorWithKernel {
return
framework
::
OpKernelType
(
expected_kernel_type
.
data_type_
,
tensor
.
place
(),
tensor
.
layout
());
}
framework
::
KernelSignature
GetExpectedPtenKernelArgs
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
return
framework
::
KernelSignature
(
"reshape_double_grad"
,
{
"DDX"
},
{},
{
"DDOut"
});
}
};
DECLARE_INPLACE_OP_INFERER
(
ReshapeOpInplaceInferer
,
{
"X"
,
"Out"
});
...
...
paddle/pten/core/kernel_alias_name.h
浏览文件 @
8cc09552
...
...
@@ -35,6 +35,8 @@ const std::unordered_map<std::string, std::string> kernel_alias_name_map = {
{
"reduce_mean"
,
"mean"
},
{
"reduce_sum"
,
"sum"
},
{
"reshape2"
,
"reshape"
},
{
"reshape2_grad"
,
"reshape_grad"
},
{
"reshape2_grad_grad"
,
"reshape_double_grad"
},
// fluid kernel "mean/reshape/matmul/flatten/sum" should be deprecated
{
"flatten"
,
"deprecated"
},
{
"flatten_grad"
,
"deprecated"
},
...
...
@@ -43,6 +45,7 @@ const std::unordered_map<std::string, std::string> kernel_alias_name_map = {
{
"matmul_grad_grad"
,
"deprecated"
},
{
"mean"
,
"deprecated"
},
{
"reshape"
,
"deprecated"
},
{
"reshape_grad"
,
"deprecated"
},
{
"sum"
,
"deprecated"
}};
}
// namespace pten
paddle/pten/kernels/reshape_grad_kernel.cc
0 → 100644
浏览文件 @
8cc09552
// Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
//
// 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.
#include "paddle/pten/kernels/reshape_grad_kernel.h"
#include "paddle/pten/backends/all_context.h"
#include "paddle/pten/core/kernel_registry.h"
#include "paddle/pten/kernels/copy_kernel.h"
namespace
pten
{
template
<
typename
Context
>
void
ReshapeGradKernel
(
const
Context
&
dev_ctx
,
const
DenseTensor
&
out_grad
,
DenseTensor
*
x_grad
)
{
auto
x_dims
=
x_grad
->
dims
();
pten
::
Copy
(
dev_ctx
,
out_grad
,
false
,
x_grad
);
x_grad
->
Resize
(
x_dims
);
}
template
<
typename
Context
>
void
ReshapeDoubleGradKernel
(
const
Context
&
dev_ctx
,
const
DenseTensor
&
x_grad_grad
,
DenseTensor
*
out_grad_grad
)
{
ReshapeGradKernel
(
dev_ctx
,
x_grad_grad
,
out_grad_grad
);
}
}
// namespace pten
PT_REGISTER_GENERAL_KERNEL
(
reshape_grad
,
CPU
,
ALL_LAYOUT
,
pten
::
ReshapeGradKernel
<
pten
::
CPUContext
>
,
ALL_DTYPE
)
{}
PT_REGISTER_GENERAL_KERNEL
(
reshape_double_grad
,
CPU
,
ALL_LAYOUT
,
pten
::
ReshapeDoubleGradKernel
<
pten
::
CPUContext
>
,
ALL_DTYPE
)
{}
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
PT_REGISTER_GENERAL_KERNEL
(
reshape_grad
,
GPU
,
ALL_LAYOUT
,
pten
::
ReshapeGradKernel
<
pten
::
GPUContext
>
,
ALL_DTYPE
)
{}
PT_REGISTER_GENERAL_KERNEL
(
reshape_double_grad
,
GPU
,
ALL_LAYOUT
,
pten
::
ReshapeDoubleGradKernel
<
pten
::
GPUContext
>
,
ALL_DTYPE
)
{}
#endif
#ifdef PADDLE_WITH_XPU
PT_REGISTER_GENERAL_KERNEL
(
reshape_grad
,
XPU
,
ALL_LAYOUT
,
pten
::
ReshapeGradKernel
<
pten
::
XPUContext
>
,
ALL_DTYPE
)
{}
PT_REGISTER_GENERAL_KERNEL
(
reshape_double_grad
,
XPU
,
ALL_LAYOUT
,
pten
::
ReshapeDoubleGradKernel
<
pten
::
XPUContext
>
,
ALL_DTYPE
)
{}
#endif
paddle/pten/kernels/reshape_grad_kernel.h
0 → 100644
浏览文件 @
8cc09552
/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
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. */
#pragma once
#include "paddle/pten/core/dense_tensor.h"
namespace
pten
{
template
<
typename
Context
>
void
ReshapeGradKernel
(
const
Context
&
dev_ctx
,
const
DenseTensor
&
out_grad
,
DenseTensor
*
x_grad
);
template
<
typename
Context
>
void
ReshapeDoubleGradKernel
(
const
Context
&
dev_ctx
,
const
DenseTensor
&
x_grad_grad
,
DenseTensor
*
out_grad_grad
);
}
// namespace pten
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录