Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
4d7ad277
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
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看板
未验证
提交
4d7ad277
编写于
2月 08, 2022
作者:
C
Chen Weihang
提交者:
GitHub
2月 08, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix reduce_sum dtype dispatch bug on gpu (#39349)
* fix pten reduce dispatch bug * add cast beforce reduce * fix test failed
上级
96964ff8
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
71 addition
and
25 deletion
+71
-25
paddle/pten/api/ext/dispatch.h
paddle/pten/api/ext/dispatch.h
+40
-0
paddle/pten/kernels/cpu/reduce.h
paddle/pten/kernels/cpu/reduce.h
+2
-9
paddle/pten/kernels/gpu/reduce.h
paddle/pten/kernels/gpu/reduce.h
+8
-5
python/paddle/fluid/tests/unittests/test_reduce_op.py
python/paddle/fluid/tests/unittests/test_reduce_op.py
+21
-11
未找到文件。
paddle/pten/api/ext/dispatch.h
浏览文件 @
4d7ad277
...
@@ -302,4 +302,44 @@ namespace paddle {
...
@@ -302,4 +302,44 @@ namespace paddle {
} \
} \
}()
}()
#define PD_VISIT_BOOL_AND_FLOATING_AND_COMPLEX_AND_3_TYPES( \
SPECIFIED_TYPE1, SPECIFIED_TYPE2, SPECIFIED_TYPE3, TYPE, NAME, ...) \
[&] { \
const auto& __dtype__ = TYPE; \
switch (__dtype__) { \
PD_PRIVATE_CASE_TYPE(NAME, ::paddle::DataType::BOOL, bool, __VA_ARGS__) \
PD_PRIVATE_CASE_TYPE( \
NAME, ::paddle::DataType::FLOAT32, float, __VA_ARGS__) \
PD_PRIVATE_CASE_TYPE( \
NAME, ::paddle::DataType::FLOAT64, double, __VA_ARGS__) \
PD_PRIVATE_CASE_TYPE(NAME, \
::paddle::DataType::COMPLEX64, \
::paddle::complex64, \
__VA_ARGS__) \
PD_PRIVATE_CASE_TYPE(NAME, \
::paddle::DataType::COMPLEX128, \
::paddle::complex128, \
__VA_ARGS__) \
PD_PRIVATE_CASE_TYPE( \
NAME, \
SPECIFIED_TYPE1, \
::paddle::experimental::DataTypeToCppType<SPECIFIED_TYPE1>::type, \
__VA_ARGS__) \
PD_PRIVATE_CASE_TYPE( \
NAME, \
SPECIFIED_TYPE2, \
::paddle::experimental::DataTypeToCppType<SPECIFIED_TYPE2>::type, \
__VA_ARGS__) \
PD_PRIVATE_CASE_TYPE( \
NAME, \
SPECIFIED_TYPE3, \
::paddle::experimental::DataTypeToCppType<SPECIFIED_TYPE3>::type, \
__VA_ARGS__) \
default: \
PD_THROW("function " #NAME " is not implemented for data type `", \
__dtype__, \
"`"); \
} \
}()
}
// namespace paddle
}
// namespace paddle
paddle/pten/kernels/cpu/reduce.h
浏览文件 @
4d7ad277
...
@@ -220,22 +220,15 @@ void Reduce(const DeviceContext& dev_ctx,
...
@@ -220,22 +220,15 @@ void Reduce(const DeviceContext& dev_ctx,
// no need to cast dtype
// no need to cast dtype
if
(
out_dtype
==
pten
::
DataType
::
UNDEFINED
||
out_dtype
==
x
.
dtype
())
{
if
(
out_dtype
==
pten
::
DataType
::
UNDEFINED
||
out_dtype
==
x
.
dtype
())
{
if
(
out_dtype
==
pten
::
DataType
::
UNDEFINED
)
{
out_dtype
=
x
.
dtype
();
}
// do reduce sum
// do reduce sum
PD_VISIT_ALL_TYPES
(
PD_VISIT_ALL_TYPES
(
out_dtype
,
"ReduceKernelImpl"
,
([
&
]
{
x
.
dtype
()
,
"ReduceKernelImpl"
,
([
&
]
{
pten
::
ReduceKernelImpl
<
DeviceContext
,
T
,
data_t
,
Functor
>
(
pten
::
ReduceKernelImpl
<
DeviceContext
,
T
,
data_t
,
Functor
>
(
dev_ctx
,
x
,
out
,
dims
,
keep_dim
,
reduce_all
);
dev_ctx
,
x
,
out
,
dims
,
keep_dim
,
reduce_all
);
}));
}));
}
else
{
}
else
{
pten
::
DenseTensor
tmp_tensor
=
pten
::
DenseTensor
(
pten
::
make_intrusive
<
paddle
::
experimental
::
SharedStorage
>
(
x
.
place
()),
pten
::
DenseTensorMeta
(
out_dtype
,
x
.
dims
(),
x
.
layout
()));
// cast x tensor to out_dtype
// cast x tensor to out_dtype
pten
::
CastKernel
<
T
,
DeviceContext
>
(
dev_ctx
,
x
,
out_dtype
,
&
tmp_tensor
);
auto
tmp_tensor
=
pten
::
Cast
<
T
,
DeviceContext
>
(
dev_ctx
,
x
,
out_dtype
);
// do reduce sum
// do reduce sum
PD_VISIT_ALL_TYPES
(
PD_VISIT_ALL_TYPES
(
...
...
paddle/pten/kernels/gpu/reduce.h
浏览文件 @
4d7ad277
...
@@ -43,6 +43,7 @@ namespace cub = hipcub;
...
@@ -43,6 +43,7 @@ namespace cub = hipcub;
#include "paddle/pten/core/dense_tensor.h"
#include "paddle/pten/core/dense_tensor.h"
#include "paddle/pten/core/enforce.h"
#include "paddle/pten/core/enforce.h"
#include "paddle/pten/core/utils/array.h"
#include "paddle/pten/core/utils/array.h"
#include "paddle/pten/kernels/cast_kernel.h"
#include "paddle/pten/kernels/funcs/elementwise_base.h"
#include "paddle/pten/kernels/funcs/elementwise_base.h"
#include "paddle/pten/kernels/primitive/kernel_primitives.h"
#include "paddle/pten/kernels/primitive/kernel_primitives.h"
...
@@ -1232,21 +1233,23 @@ void Reduce(const GPUContext& dev_ctx,
...
@@ -1232,21 +1233,23 @@ void Reduce(const GPUContext& dev_ctx,
gpuStream_t
stream
=
dev_ctx
.
stream
();
gpuStream_t
stream
=
dev_ctx
.
stream
();
if
(
out_dtype
!=
pten
::
DataType
::
UNDEFINED
&&
out_dtype
!=
x
.
dtype
())
{
if
(
out_dtype
!=
pten
::
DataType
::
UNDEFINED
&&
out_dtype
!=
x
.
dtype
())
{
PD_DISPATCH_FLOATING_AND_COMPLEX_AND_2_TYPES
(
auto
tmp_tensor
=
pten
::
Cast
<
T
>
(
dev_ctx
,
x
,
out_dtype
);
PD_VISIT_BOOL_AND_FLOATING_AND_COMPLEX_AND_3_TYPES
(
pten
::
DataType
::
INT32
,
pten
::
DataType
::
INT32
,
pten
::
DataType
::
INT64
,
pten
::
DataType
::
INT64
,
pten
::
DataType
::
FLOAT16
,
out_dtype
,
out_dtype
,
"TensorReduceFunctorImpl"
,
"TensorReduceFunctorImpl"
,
([
&
]
{
([
&
]
{
using
MPType
=
typename
kps
::
details
::
MPTypeTrait
<
data_t
>::
Type
;
using
MPType
=
typename
kps
::
details
::
MPTypeTrait
<
data_t
>::
Type
;
pten
::
kernels
::
TensorReduceFunctorImpl
<
T
,
pten
::
kernels
::
TensorReduceFunctorImpl
<
data_t
,
data_t
,
data_t
,
ReduceOp
,
ReduceOp
,
TransformOp
<
T
,
MPType
>>
(
TransformOp
<
data_t
,
MPType
>>
(
dev_ctx
,
dev_ctx
,
x
,
tmp_tensor
,
out
,
out
,
TransformOp
<
T
,
MPType
>
(
reduce_num
),
TransformOp
<
data_t
,
MPType
>
(
reduce_num
),
reduce_dims
,
reduce_dims
,
stream
);
stream
);
}));
}));
...
...
python/paddle/fluid/tests/unittests/test_reduce_op.py
浏览文件 @
4d7ad277
...
@@ -740,13 +740,20 @@ class API_TestSumOp(unittest.TestCase):
...
@@ -740,13 +740,20 @@ class API_TestSumOp(unittest.TestCase):
if
np_axis
is
None
:
if
np_axis
is
None
:
np_axis
=
attr_axis
np_axis
=
attr_axis
places
=
[
fluid
.
CPUPlace
()]
if
core
.
is_compiled_with_cuda
():
places
.
append
(
fluid
.
CUDAPlace
(
0
))
for
place
in
places
:
with
fluid
.
program_guard
(
fluid
.
Program
(),
fluid
.
Program
()):
with
fluid
.
program_guard
(
fluid
.
Program
(),
fluid
.
Program
()):
data
=
fluid
.
data
(
"data"
,
shape
=
shape
,
dtype
=
x_dtype
)
data
=
fluid
.
data
(
"data"
,
shape
=
shape
,
dtype
=
x_dtype
)
result_sum
=
paddle
.
sum
(
x
=
data
,
axis
=
attr_axis
,
dtype
=
attr_dtype
)
result_sum
=
paddle
.
sum
(
x
=
data
,
axis
=
attr_axis
,
dtype
=
attr_dtype
)
exe
=
fluid
.
Executor
(
fluid
.
CPUPlace
()
)
exe
=
fluid
.
Executor
(
place
)
input_data
=
np
.
random
.
rand
(
*
shape
).
astype
(
x_dtype
)
input_data
=
np
.
random
.
rand
(
*
shape
).
astype
(
x_dtype
)
res
,
=
exe
.
run
(
feed
=
{
"data"
:
input_data
},
fetch_list
=
[
result_sum
])
res
,
=
exe
.
run
(
feed
=
{
"data"
:
input_data
},
fetch_list
=
[
result_sum
])
self
.
assertTrue
(
self
.
assertTrue
(
np
.
allclose
(
np
.
allclose
(
...
@@ -759,10 +766,12 @@ class API_TestSumOp(unittest.TestCase):
...
@@ -759,10 +766,12 @@ class API_TestSumOp(unittest.TestCase):
self
.
run_static
(
shape
,
"bool"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"bool"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"bool"
,
axis
,
attr_dtype
=
"int32"
)
self
.
run_static
(
shape
,
"bool"
,
axis
,
attr_dtype
=
"int32"
)
self
.
run_static
(
shape
,
"bool"
,
axis
,
attr_dtype
=
"int64"
)
self
.
run_static
(
shape
,
"bool"
,
axis
,
attr_dtype
=
"int64"
)
self
.
run_static
(
shape
,
"bool"
,
axis
,
attr_dtype
=
"float16"
)
self
.
run_static
(
shape
,
"int32"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"int32"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"int32"
,
axis
,
attr_dtype
=
"int32"
)
self
.
run_static
(
shape
,
"int32"
,
axis
,
attr_dtype
=
"int32"
)
self
.
run_static
(
shape
,
"int32"
,
axis
,
attr_dtype
=
"int64"
)
self
.
run_static
(
shape
,
"int32"
,
axis
,
attr_dtype
=
"int64"
)
self
.
run_static
(
shape
,
"int32"
,
axis
,
attr_dtype
=
"float64"
)
self
.
run_static
(
shape
,
"int64"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"int64"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"int64"
,
axis
,
attr_dtype
=
"int64"
)
self
.
run_static
(
shape
,
"int64"
,
axis
,
attr_dtype
=
"int64"
)
...
@@ -771,6 +780,7 @@ class API_TestSumOp(unittest.TestCase):
...
@@ -771,6 +780,7 @@ class API_TestSumOp(unittest.TestCase):
self
.
run_static
(
shape
,
"float32"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"float32"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"float32"
,
axis
,
attr_dtype
=
"float32"
)
self
.
run_static
(
shape
,
"float32"
,
axis
,
attr_dtype
=
"float32"
)
self
.
run_static
(
shape
,
"float32"
,
axis
,
attr_dtype
=
"float64"
)
self
.
run_static
(
shape
,
"float32"
,
axis
,
attr_dtype
=
"float64"
)
self
.
run_static
(
shape
,
"float32"
,
axis
,
attr_dtype
=
"int64"
)
self
.
run_static
(
shape
,
"float64"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"float64"
,
axis
,
attr_dtype
=
None
)
self
.
run_static
(
shape
,
"float64"
,
axis
,
attr_dtype
=
"float32"
)
self
.
run_static
(
shape
,
"float64"
,
axis
,
attr_dtype
=
"float32"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录