Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
cb6de765
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看板
未验证
提交
cb6de765
编写于
4月 13, 2023
作者:
C
chenxujun
提交者:
GitHub
4月 13, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add overlap_add, sign tests (#52667)
上级
a67d3bb7
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
112 addition
and
13 deletion
+112
-13
paddle/phi/kernels/funcs/eigen/sign.cu
paddle/phi/kernels/funcs/eigen/sign.cu
+1
-0
paddle/phi/kernels/gpu/overlap_add_grad_kernel.cu
paddle/phi/kernels/gpu/overlap_add_grad_kernel.cu
+1
-0
paddle/phi/kernels/gpu/overlap_add_kernel.cu
paddle/phi/kernels/gpu/overlap_add_kernel.cu
+1
-0
paddle/phi/kernels/gpu/sign_kernel.cu.cc
paddle/phi/kernels/gpu/sign_kernel.cu.cc
+10
-6
python/paddle/fluid/tests/unittests/test_overlap_add_op.py
python/paddle/fluid/tests/unittests/test_overlap_add_op.py
+55
-2
python/paddle/fluid/tests/unittests/test_sign_op.py
python/paddle/fluid/tests/unittests/test_sign_op.py
+39
-3
python/paddle/signal.py
python/paddle/signal.py
+4
-1
python/paddle/tensor/math.py
python/paddle/tensor/math.py
+1
-1
未找到文件。
paddle/phi/kernels/funcs/eigen/sign.cu
浏览文件 @
cb6de765
...
...
@@ -32,6 +32,7 @@ struct EigenSign<Eigen::GpuDevice, T> {
template
struct
EigenSign
<
Eigen
::
GpuDevice
,
float
>;
template
struct
EigenSign
<
Eigen
::
GpuDevice
,
double
>;
template
struct
EigenSign
<
Eigen
::
GpuDevice
,
dtype
::
float16
>;
template
struct
EigenSign
<
Eigen
::
GpuDevice
,
dtype
::
bfloat16
>;
}
// namespace funcs
}
// namespace phi
paddle/phi/kernels/gpu/overlap_add_grad_kernel.cu
浏览文件 @
cb6de765
...
...
@@ -161,5 +161,6 @@ PD_REGISTER_KERNEL(overlap_add_grad,
float
,
double
,
phi
::
dtype
::
float16
,
phi
::
dtype
::
bfloat16
,
phi
::
dtype
::
complex
<
float
>
,
phi
::
dtype
::
complex
<
double
>
)
{}
paddle/phi/kernels/gpu/overlap_add_kernel.cu
浏览文件 @
cb6de765
...
...
@@ -147,5 +147,6 @@ PD_REGISTER_KERNEL(overlap_add,
float
,
double
,
phi
::
dtype
::
float16
,
phi
::
dtype
::
bfloat16
,
phi
::
dtype
::
complex
<
float
>
,
phi
::
dtype
::
complex
<
double
>
)
{}
paddle/phi/kernels/gpu/sign_kernel.cu.cc
浏览文件 @
cb6de765
...
...
@@ -19,9 +19,13 @@ limitations under the License. */
#include "paddle/phi/kernels/impl/sign_kernel_impl.h"
// See Note [ Why still include the fluid headers? ]
#include "paddle/phi/common/float16.h"
using
float16
=
phi
::
dtype
::
float16
;
PD_REGISTER_KERNEL
(
sign
,
GPU
,
ALL_LAYOUT
,
phi
::
SignKernel
,
float
,
double
,
float16
)
{}
#include "paddle/phi/common/amp_type_traits.h"
PD_REGISTER_KERNEL
(
sign
,
GPU
,
ALL_LAYOUT
,
phi
::
SignKernel
,
float
,
double
,
phi
::
dtype
::
float16
,
phi
::
dtype
::
bfloat16
)
{}
python/paddle/fluid/tests/unittests/test_overlap_add_op.py
浏览文件 @
cb6de765
...
...
@@ -15,14 +15,15 @@
import
unittest
import
numpy
as
np
from
eager_op_test
import
OpTest
from
eager_op_test
import
OpTest
,
convert_float_to_uint16
import
paddle
from
paddle.fluid
import
core
def
overlap_add
(
x
,
hop_length
,
axis
=-
1
):
assert
axis
in
[
0
,
-
1
],
'axis should be 0/-1.'
assert
len
(
x
.
shape
)
>=
2
,
'Input dims shoul
b
be >= 2.'
assert
len
(
x
.
shape
)
>=
2
,
'Input dims shoul
d
be >= 2.'
squeeze_output
=
False
if
len
(
x
.
shape
)
==
2
:
...
...
@@ -101,6 +102,58 @@ class TestOverlapAddOp(OpTest):
paddle
.
disable_static
()
class
TestOverlapAddFP16Op
(
TestOverlapAddOp
):
def
initTestCase
(
self
):
input_shape
=
(
50
,
3
)
input_type
=
'float16'
attrs
=
{
'hop_length'
:
4
,
'axis'
:
-
1
,
}
return
input_shape
,
input_type
,
attrs
@
unittest
.
skipIf
(
not
core
.
is_compiled_with_cuda
()
or
not
core
.
is_bfloat16_supported
(
core
.
CUDAPlace
(
0
)),
"core is not compiled with CUDA or not support bfloat16"
,
)
class
TestOverlapAddBF16Op
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"overlap_add"
self
.
python_api
=
paddle
.
signal
.
overlap_add
self
.
shape
,
self
.
type
,
self
.
attrs
=
self
.
initTestCase
()
self
.
np_dtype
=
np
.
float32
self
.
dtype
=
np
.
uint16
self
.
inputs
=
{
'X'
:
np
.
random
.
random
(
size
=
self
.
shape
).
astype
(
self
.
np_dtype
),
}
self
.
outputs
=
{
'Out'
:
overlap_add
(
x
=
self
.
inputs
[
'X'
],
**
self
.
attrs
)}
self
.
inputs
[
'X'
]
=
convert_float_to_uint16
(
self
.
inputs
[
'X'
])
self
.
outputs
[
'Out'
]
=
convert_float_to_uint16
(
self
.
outputs
[
'Out'
])
self
.
place
=
core
.
CUDAPlace
(
0
)
def
initTestCase
(
self
):
input_shape
=
(
50
,
3
)
input_type
=
np
.
uint16
attrs
=
{
'hop_length'
:
4
,
'axis'
:
-
1
,
}
return
input_shape
,
input_type
,
attrs
def
test_check_output
(
self
):
paddle
.
enable_static
()
self
.
check_output_with_place
(
self
.
place
)
paddle
.
disable_static
()
def
test_check_grad_normal
(
self
):
paddle
.
enable_static
()
self
.
check_grad_with_place
(
self
.
place
,
[
'X'
],
'Out'
)
paddle
.
disable_static
()
class
TestCase1
(
TestOverlapAddOp
):
def
initTestCase
(
self
):
input_shape
=
(
3
,
50
)
...
...
python/paddle/fluid/tests/unittests/test_sign_op.py
浏览文件 @
cb6de765
...
...
@@ -17,7 +17,7 @@ import unittest
import
gradient_checker
import
numpy
as
np
from
decorator_helper
import
prog_scope
from
eager_op_test
import
OpTest
from
eager_op_test
import
OpTest
,
convert_float_to_uint16
import
paddle
from
paddle
import
fluid
...
...
@@ -40,6 +40,42 @@ class TestSignOp(OpTest):
self
.
check_grad
([
'X'
],
'Out'
)
class
TestSignFP16Op
(
TestSignOp
):
def
setUp
(
self
):
self
.
op_type
=
"sign"
self
.
python_api
=
paddle
.
sign
self
.
inputs
=
{
'X'
:
np
.
random
.
uniform
(
-
10
,
10
,
(
10
,
10
)).
astype
(
"float16"
)
}
self
.
outputs
=
{
'Out'
:
np
.
sign
(
self
.
inputs
[
'X'
])}
@
unittest
.
skipIf
(
not
core
.
is_compiled_with_cuda
()
or
not
core
.
is_bfloat16_supported
(
core
.
CUDAPlace
(
0
)),
"core is not compiled with CUDA or not support bfloat16"
,
)
class
TestSignBF16Op
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"sign"
self
.
python_api
=
paddle
.
sign
self
.
dtype
=
np
.
uint16
self
.
inputs
=
{
'X'
:
np
.
random
.
uniform
(
-
10
,
10
,
(
10
,
10
)).
astype
(
"float32"
)
}
self
.
outputs
=
{
'Out'
:
np
.
sign
(
self
.
inputs
[
'X'
])}
self
.
inputs
[
'X'
]
=
convert_float_to_uint16
(
self
.
inputs
[
'X'
])
self
.
outputs
[
'Out'
]
=
convert_float_to_uint16
(
self
.
outputs
[
'Out'
])
self
.
place
=
core
.
CUDAPlace
(
0
)
def
test_check_output
(
self
):
self
.
check_output_with_place
(
self
.
place
)
def
test_check_grad
(
self
):
self
.
check_grad_with_place
(
self
.
place
,
[
'X'
],
'Out'
)
class
TestSignOpError
(
unittest
.
TestCase
):
def
test_errors
(
self
):
with
program_guard
(
Program
(),
Program
()):
...
...
@@ -97,7 +133,7 @@ class TestSignDoubleGradCheck(unittest.TestCase):
@
prog_scope
()
def
func
(
self
,
place
):
# the shape of input variable should be clearly specified, not in
lc
ude -1.
# the shape of input variable should be clearly specified, not in
cl
ude -1.
eps
=
0.005
dtype
=
np
.
float32
...
...
@@ -128,7 +164,7 @@ class TestSignTripleGradCheck(unittest.TestCase):
@
prog_scope
()
def
func
(
self
,
place
):
# the shape of input variable should be clearly specified, not in
lc
ude -1.
# the shape of input variable should be clearly specified, not in
cl
ude -1.
eps
=
0.005
dtype
=
np
.
float32
...
...
python/paddle/signal.py
浏览文件 @
cb6de765
...
...
@@ -219,7 +219,10 @@ def overlap_add(x, hop_length, axis=-1, name=None):
out
=
op
(
x
,
*
attrs
)
else
:
check_variable_and_dtype
(
x
,
'x'
,
[
'int32'
,
'int64'
,
'float16'
,
'float32'
,
'float64'
],
op_type
x
,
'x'
,
[
'int32'
,
'int64'
,
'float16'
,
'float32'
,
'float64'
,
'uint16'
],
op_type
,
)
helper
=
LayerHelper
(
op_type
,
**
locals
())
dtype
=
helper
.
input_dtype
(
input_param_name
=
'x'
)
...
...
python/paddle/tensor/math.py
浏览文件 @
cb6de765
...
...
@@ -3677,7 +3677,7 @@ def sign(x, name=None):
return
_C_ops
.
sign
(
x
)
else
:
check_variable_and_dtype
(
x
,
'x'
,
[
'float16'
,
'float32'
,
'float64'
],
'sign'
x
,
'x'
,
[
'float16'
,
'float32'
,
'float64'
,
'uint16'
],
'sign'
)
helper
=
LayerHelper
(
"sign"
,
**
locals
())
out
=
helper
.
create_variable_for_type_inference
(
dtype
=
x
.
dtype
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录