Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
af0eca92
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看板
提交
af0eca92
编写于
1月 25, 2022
作者:
N
niuliling123
提交者:
GitHub
1月 25, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert "Replace EigenBroadcast with ElementwiseBroadcast in ReduceGrad (#38959)"
This reverts commit
9059ef69
.
上级
8bb509d5
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
21 addition
and
88 deletion
+21
-88
paddle/fluid/operators/reduce_ops/reduce_mean_op.part.cu
paddle/fluid/operators/reduce_ops/reduce_mean_op.part.cu
+8
-2
paddle/fluid/operators/reduce_ops/reduce_op.h
paddle/fluid/operators/reduce_ops/reduce_op.h
+4
-54
paddle/fluid/operators/reduce_ops/reduce_sum_op.cc
paddle/fluid/operators/reduce_ops/reduce_sum_op.cc
+1
-1
paddle/fluid/operators/reduce_ops/reduce_sum_op.h
paddle/fluid/operators/reduce_ops/reduce_sum_op.h
+1
-1
paddle/fluid/operators/reduce_ops/reduce_sum_op.part.cu
paddle/fluid/operators/reduce_ops/reduce_sum_op.part.cu
+2
-1
paddle/pten/kernels/gpu/elementwise.h
paddle/pten/kernels/gpu/elementwise.h
+3
-10
paddle/pten/kernels/gpu/reduce.h
paddle/pten/kernels/gpu/reduce.h
+2
-19
未找到文件。
paddle/fluid/operators/reduce_ops/reduce_mean_op.part.cu
浏览文件 @
af0eca92
...
...
@@ -17,9 +17,15 @@
template
<
typename
T
>
using
CUDAReduceMeanGradKernel
=
ops
::
ReduceCudaGradKernel
<
T
,
kps
::
DivideFunctor
>
;
ops
::
ReduceGradKernel
<
paddle
::
platform
::
CUDADeviceContext
,
T
,
ops
::
MeanGradFunctor
,
true
>
;
using
FP16CUDAReduceMeanGradKernel
=
ops
::
ReduceGradKernel
<
paddle
::
platform
::
CUDADeviceContext
,
paddle
::
platform
::
float16
,
ops
::
FP16MeanGradFunctor
,
true
>
;
REGISTER_OP_CUDA_KERNEL
(
reduce_mean_grad
,
CUDAReduceMeanGradKernel
<
bool
>
,
CUDAReduceMeanGradKernel
<
paddle
::
platform
::
float16
>
,
FP16CUDAReduceMeanGradKernel
,
CUDAReduceMeanGradKernel
<
float
>
,
CUDAReduceMeanGradKernel
<
double
>
);
paddle/fluid/operators/reduce_ops/reduce_op.h
浏览文件 @
af0eca92
...
...
@@ -623,12 +623,11 @@ class ReduceGradOp : public framework::OperatorWithKernel {
protected:
framework
::
OpKernelType
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
int
out_dtype
=
ctx
.
Attr
<
int
>
(
"out
_dtype"
);
int
in_dtype
=
ctx
.
Attr
<
int
>
(
"in
_dtype"
);
auto
input_data_type
=
(
out_dtype
>=
0
)
?
static_cast
<
framework
::
proto
::
VarType
::
Type
>
(
out_dtype
)
:
OperatorWithKernel
::
IndicateVarDataType
(
ctx
,
framework
::
GradVarName
(
"Out"
));
(
in_dtype
>=
0
)
?
static_cast
<
framework
::
proto
::
VarType
::
Type
>
(
in_dtype
)
:
OperatorWithKernel
::
IndicateVarDataType
(
ctx
,
framework
::
GradVarName
(
"Out"
));
#ifdef PADDLE_WITH_MKLDNN
auto
CanMKLDNNReduceGradBeUsed
=
[
&
]()
{
auto
dx_dims
=
ctx
.
Input
<
Tensor
>
(
"X"
)
->
dims
();
...
...
@@ -737,55 +736,6 @@ class ReduceCudaKernel : public framework::OpKernel<T> {
pt_out
.
get
());
}
};
template
<
typename
T
,
template
<
typename
,
typename
>
class
TransformOp
>
class
ReduceCudaGradKernel
:
public
framework
::
OpKernel
<
T
>
{
public:
void
Compute
(
const
framework
::
ExecutionContext
&
context
)
const
override
{
bool
reduce_all
=
context
.
Attr
<
bool
>
(
"reduce_all"
);
std
::
vector
<
int
>
dims
=
context
.
Attr
<
std
::
vector
<
int
>>
(
"dim"
);
auto
*
in_x
=
context
.
Input
<
Tensor
>
(
"X"
);
auto
*
d_out
=
context
.
Input
<
framework
::
Tensor
>
(
framework
::
GradVarName
(
"Out"
));
auto
*
d_x
=
context
.
Output
<
framework
::
Tensor
>
(
framework
::
GradVarName
(
"X"
));
auto
out_dtype
=
context
.
Attr
<
int
>
(
"in_dtype"
);
// get reduce_dim and reduce_num for reduce_mean_grad
int
dim_size
=
in_x
->
dims
().
size
();
std
::
vector
<
int
>
reduce_dims
=
GetReduceDim
(
dims
,
dim_size
,
reduce_all
);
auto
update_dims
=
vectorize
(
d_x
->
dims
());
int
reduce_num
=
1
;
for
(
auto
i
:
reduce_dims
)
{
reduce_num
*=
(
in_x
->
dims
())[
i
];
update_dims
[
i
]
=
1
;
}
// make new tensor
framework
::
Tensor
new_d_out
(
d_out
->
type
());
new_d_out
.
ShareDataWith
(
*
d_out
);
new_d_out
.
Resize
(
paddle
::
framework
::
make_ddim
(
update_dims
));
auto
&
dev_ctx
=
context
.
cuda_device_context
();
if
(
out_dtype
>
0
)
{
d_x
->
mutable_data
(
dev_ctx
.
GetPlace
(),
static_cast
<
framework
::
proto
::
VarType
::
Type
>
(
out_dtype
));
}
else
{
d_x
->
mutable_data
(
dev_ctx
.
GetPlace
(),
static_cast
<
framework
::
proto
::
VarType
::
Type
>
(
d_out
->
type
()));
}
auto
pt_d_out
=
paddle
::
experimental
::
MakePtenDenseTensor
(
new_d_out
);
auto
pt_d_x
=
paddle
::
experimental
::
MakePtenDenseTensor
(
*
d_x
);
auto
pt_out_dtype
=
pten
::
TransToPtenDataType
(
static_cast
<
framework
::
proto
::
VarType
::
Type
>
(
out_dtype
));
if
(
out_dtype
<=
0
)
{
pt_out_dtype
=
pten
::
TransToPtenDataType
(
static_cast
<
framework
::
proto
::
VarType
::
Type
>
(
d_out
->
type
()));
}
using
MPType
=
typename
kps
::
details
::
MPTypeTrait
<
T
>::
Type
;
pten
::
ReduceGrad
<
T
,
TransformOp
<
T
,
MPType
>>
(
dev_ctx
,
pt_d_out
.
get
(),
pt_d_x
.
get
(),
pt_out_dtype
,
TransformOp
<
T
,
MPType
>
(
reduce_num
));
}
};
#endif
}
// namespace operators
...
...
paddle/fluid/operators/reduce_ops/reduce_sum_op.cc
浏览文件 @
af0eca92
...
...
@@ -50,7 +50,7 @@ class ReduceSumOpGradMaker : public framework::SingleGradOpMaker<T> {
framework
::
OpKernelType
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
{
int
in_dtype
=
ctx
.
Attr
<
int
>
(
"
out
_dtype"
);
int
in_dtype
=
ctx
.
Attr
<
int
>
(
"
in
_dtype"
);
if
(
in_dtype
>=
0
)
{
return
framework
::
OpKernelType
(
static_cast
<
framework
::
proto
::
VarType
::
Type
>
(
in_dtype
),
...
...
paddle/fluid/operators/reduce_ops/reduce_sum_op.h
浏览文件 @
af0eca92
...
...
@@ -74,7 +74,7 @@ class ReduceSumGradKernel : public framework::OpKernel<T> {
auto
dims
=
context
.
Attr
<
std
::
vector
<
int
>>
(
"dim"
);
if
(
context
.
GetPlace
().
GetType
()
==
platform
::
CPUPlace
().
GetType
()
&&
dims
.
size
()
==
1
)
{
int
in_dtype
=
context
.
Attr
<
int
>
(
"
out
_dtype"
);
int
in_dtype
=
context
.
Attr
<
int
>
(
"
in
_dtype"
);
if
(
in_dtype
>=
0
)
{
Tensor
tmp_tensor
;
...
...
paddle/fluid/operators/reduce_ops/reduce_sum_op.part.cu
浏览文件 @
af0eca92
...
...
@@ -17,7 +17,8 @@
template
<
typename
T
>
using
CUDAReduceSumGradKernel
=
ops
::
ReduceCudaGradKernel
<
T
,
kps
::
IdentityFunctor
>
;
ops
::
ReduceGradKernel
<
paddle
::
platform
::
CUDADeviceContext
,
T
,
ops
::
SumGradFunctor
,
true
>
;
REGISTER_OP_CUDA_KERNEL
(
reduce_sum_grad
,
CUDAReduceSumGradKernel
<
bool
>
,
...
...
paddle/pten/kernels/gpu/elementwise.h
浏览文件 @
af0eca92
...
...
@@ -134,19 +134,12 @@ struct DimensionsTransform {
explicit
DimensionsTransform
(
const
std
::
vector
<
const
DenseTensor
*>
&
ins
,
const
pten
::
framework
::
DDim
&
dims
,
int
axis
)
{
const
int
N
=
max
(
static_cast
<
int
>
(
ins
.
size
()),
2
);
const
int
N
=
ins
.
size
(
);
dim_size
=
dims
.
size
();
out_dims
=
pten
::
framework
::
vectorize
<
int64_t
>
(
dims
);
in_dims
.
resize
(
N
);
if
(
ins
.
size
()
==
1
)
{
// when ins.size() = 1, broadcast input to output
in_dims
[
0
]
=
pten
::
framework
::
vectorize
<
int64_t
>
(
ins
[
0
]
->
dims
());
in_dims
[
1
]
=
out_dims
;
// Add out_dims to in_dims to avoid errors in dims merging
}
else
{
for
(
int
j
=
0
;
j
<
N
;
++
j
)
{
in_dims
[
j
]
=
pten
::
framework
::
vectorize
<
int64_t
>
(
ins
[
j
]
->
dims
());
}
for
(
int
j
=
0
;
j
<
N
;
++
j
)
{
in_dims
[
j
]
=
pten
::
framework
::
vectorize
<
int64_t
>
(
ins
[
j
]
->
dims
());
}
InputDimensionsExtend
(
N
,
axis
);
...
...
paddle/pten/kernels/gpu/reduce.h
浏览文件 @
af0eca92
...
...
@@ -45,7 +45,8 @@ namespace cub = hipcub;
#include "paddle/pten/api/ext/dispatch.h"
#include "paddle/pten/backends/gpu/gpu_context.h"
#include "paddle/pten/core/dense_tensor.h"
#include "paddle/pten/kernels/gpu/elementwise.h"
#include "paddle/pten/kernels/funcs/elementwise_base.h"
// Reduce split or not, Whether to use ReduceHigherDim
#define REDUCE_SPLIT_BOUNDARY 512
#define REDUCE_VEC_SIZE 4
...
...
@@ -1253,24 +1254,6 @@ void Reduce(const GPUContext& dev_ctx,
x
,
out
,
TransformOp
<
T
,
MPType
>
(
reduce_num
),
reduce_dims
,
stream
);
}
}
template
<
typename
InT
,
typename
Functor
>
void
ReduceGrad
(
const
GPUContext
&
dev_ctx
,
DenseTensor
*
d_out
,
DenseTensor
*
d_x
,
DataType
out_dtype
,
Functor
functor
)
{
std
::
vector
<
const
DenseTensor
*>
inputs
=
{
d_out
};
std
::
vector
<
DenseTensor
*>
outputs
=
{
d_x
};
PD_VISIT_ALL_TYPES
(
out_dtype
,
"LaunchBroadcastElementwiseCudaKernel"
,
([
&
]
{
LaunchBroadcastElementwiseCudaKernel
<
pten
::
ElementwiseType
::
kUnary
,
InT
,
data_t
>
(
dev_ctx
,
inputs
,
&
outputs
,
0
,
functor
);
}));
}
}
// namespace pten
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录