Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
1fbf423a
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
1fbf423a
编写于
3月 15, 2023
作者:
Y
Yuang Liu
提交者:
GitHub
3月 15, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[AMP OP&Test] Support bf16/fp16 for roll op and add ut. (#51565)
上级
8fc9a19f
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
89 addition
and
7 deletion
+89
-7
paddle/phi/kernels/gpu/roll_grad_kernel.cu
paddle/phi/kernels/gpu/roll_grad_kernel.cu
+3
-0
paddle/phi/kernels/gpu/roll_kernel.cu
paddle/phi/kernels/gpu/roll_kernel.cu
+3
-0
python/paddle/fluid/tests/unittests/test_roll_op.py
python/paddle/fluid/tests/unittests/test_roll_op.py
+68
-7
python/paddle/tensor/manipulation.py
python/paddle/tensor/manipulation.py
+15
-0
未找到文件。
paddle/phi/kernels/gpu/roll_grad_kernel.cu
浏览文件 @
1fbf423a
...
...
@@ -14,7 +14,9 @@
#include "paddle/phi/kernels/roll_grad_kernel.h"
#include "paddle/phi/common/bfloat16.h"
#include "paddle/phi/common/complex.h"
#include "paddle/phi/common/float16.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/gpu/roll_kernel_impl.h"
...
...
@@ -81,6 +83,7 @@ PD_REGISTER_KERNEL(roll_grad,
ALL_LAYOUT
,
phi
::
RollGradKernel
,
phi
::
dtype
::
float16
,
phi
::
dtype
::
bfloat16
,
float
,
double
,
int
,
...
...
paddle/phi/kernels/gpu/roll_kernel.cu
浏览文件 @
1fbf423a
...
...
@@ -14,7 +14,9 @@
#include "paddle/phi/kernels/roll_kernel.h"
#include "paddle/phi/common/bfloat16.h"
#include "paddle/phi/common/complex.h"
#include "paddle/phi/common/float16.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/core/utils/array.h"
#include "paddle/phi/kernels/gpu/roll_kernel_impl.h"
...
...
@@ -83,6 +85,7 @@ PD_REGISTER_KERNEL(roll,
ALL_LAYOUT
,
phi
::
RollKernel
,
phi
::
dtype
::
float16
,
phi
::
dtype
::
bfloat16
,
float
,
double
,
int
,
...
...
python/paddle/fluid/tests/unittests/test_roll_op.py
浏览文件 @
1fbf423a
...
...
@@ -15,10 +15,11 @@
import
unittest
import
numpy
as
np
from
op_test
import
OpTest
from
op_test
import
OpTest
,
convert_float_to_uint16
import
paddle
import
paddle.fluid
as
fluid
import
paddle.fluid.core
as
core
from
paddle.fluid
import
Program
,
program_guard
...
...
@@ -27,13 +28,17 @@ class TestRollOp(OpTest):
self
.
python_api
=
paddle
.
roll
self
.
op_type
=
"roll"
self
.
init_dtype_type
()
self
.
inputs
=
{
'X'
:
np
.
random
.
random
(
self
.
x_shape
).
astype
(
self
.
dtype
)}
self
.
attrs
=
{
'shifts'
:
self
.
shifts
,
'axis'
:
self
.
axis
}
self
.
outputs
=
{
'Out'
:
np
.
roll
(
self
.
inputs
[
'X'
],
self
.
attrs
[
'shifts'
],
self
.
attrs
[
'axis'
]
)
}
bf16_ut
=
self
.
dtype
==
np
.
uint16
x
=
np
.
random
.
random
(
self
.
x_shape
).
astype
(
np
.
float32
if
bf16_ut
else
self
.
dtype
)
out
=
np
.
roll
(
x
,
self
.
attrs
[
'shifts'
],
self
.
attrs
[
'axis'
])
if
bf16_ut
:
x
=
convert_float_to_uint16
(
x
)
out
=
convert_float_to_uint16
(
out
)
self
.
inputs
=
{
'X'
:
x
}
self
.
outputs
=
{
'Out'
:
out
}
def
init_dtype_type
(
self
):
self
.
dtype
=
np
.
float64
...
...
@@ -56,6 +61,62 @@ class TestRollOpCase2(TestRollOp):
self
.
axis
=
[
-
1
,
-
2
]
class
TestRollFP16OP
(
TestRollOp
):
def
init_dtype_type
(
self
):
self
.
dtype
=
np
.
float16
self
.
x_shape
=
(
100
,
4
,
5
)
self
.
shifts
=
[
101
,
-
1
]
self
.
axis
=
[
0
,
-
2
]
class
TestRollFP16OpCase2
(
TestRollOp
):
def
init_dtype_type
(
self
):
self
.
dtype
=
np
.
float16
self
.
x_shape
=
(
100
,
10
,
5
)
self
.
shifts
=
[
8
,
-
1
]
self
.
axis
=
[
-
1
,
-
2
]
@
unittest
.
skipIf
(
not
core
.
is_compiled_with_cuda
()
or
not
core
.
is_bfloat16_supported
(
core
.
CUDAPlace
(
0
)),
"core is not complied with CUDA and not support the bfloat16"
,
)
class
TestRollBF16OP
(
TestRollOp
):
def
init_dtype_type
(
self
):
self
.
dtype
=
np
.
uint16
self
.
x_shape
=
(
10
,
4
,
5
)
self
.
shifts
=
[
101
,
-
1
]
self
.
axis
=
[
0
,
-
2
]
self
.
place
=
core
.
CUDAPlace
(
0
)
def
test_check_output
(
self
):
self
.
check_output_with_place
(
self
.
place
,
check_eager
=
True
)
def
test_check_grad_normal
(
self
):
self
.
check_grad_with_place
(
self
.
place
,
[
'X'
],
'Out'
,
check_eager
=
True
)
@
unittest
.
skipIf
(
not
core
.
is_compiled_with_cuda
()
or
not
core
.
is_bfloat16_supported
(
core
.
CUDAPlace
(
0
)),
"core is not complied with CUDA and not support the bfloat16"
,
)
class
TestRollBF16OpCase2
(
TestRollOp
):
def
init_dtype_type
(
self
):
self
.
dtype
=
np
.
uint16
self
.
x_shape
=
(
10
,
5
,
5
)
self
.
shifts
=
[
8
,
-
1
]
self
.
axis
=
[
-
1
,
-
2
]
self
.
place
=
core
.
CUDAPlace
(
0
)
def
test_check_output
(
self
):
self
.
check_output_with_place
(
self
.
place
,
check_eager
=
True
)
def
test_check_grad_normal
(
self
):
self
.
check_grad_with_place
(
self
.
place
,
[
'X'
],
'Out'
,
check_eager
=
True
)
class
TestRollAPI
(
unittest
.
TestCase
):
def
input_data
(
self
):
self
.
data_x
=
np
.
array
(
...
...
python/paddle/tensor/manipulation.py
浏览文件 @
1fbf423a
...
...
@@ -1710,6 +1710,21 @@ def roll(x, shifts, axis=None, name=None):
if
in_dygraph_mode
():
return
_C_ops
.
roll
(
x
,
shifts
,
axis
)
else
:
check_variable_and_dtype
(
x
,
'dtype'
,
[
'float16'
,
'float32'
,
'uint16'
,
'float64'
,
'int32'
,
'int64'
,
'complex64'
,
'complex128'
,
],
'roll'
,
)
helper
=
LayerHelper
(
"roll"
,
**
locals
())
check_type
(
axis
,
'axis'
,
(
list
,
tuple
),
'roll'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录