Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
cf209204
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,发现更多精彩内容 >>
未验证
提交
cf209204
编写于
2月 27, 2023
作者:
C
Charles-hit
提交者:
GitHub
2月 27, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add prim test for sqrt and exp (#50942)
上级
6786c012
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
125 addition
and
1 deletion
+125
-1
python/paddle/fluid/tests/unittests/CMakeLists.txt
python/paddle/fluid/tests/unittests/CMakeLists.txt
+1
-1
python/paddle/fluid/tests/unittests/prim_op_test.py
python/paddle/fluid/tests/unittests/prim_op_test.py
+10
-0
python/paddle/fluid/tests/unittests/test_activation_op.py
python/paddle/fluid/tests/unittests/test_activation_op.py
+114
-0
未找到文件。
python/paddle/fluid/tests/unittests/CMakeLists.txt
浏览文件 @
cf209204
...
...
@@ -1203,7 +1203,7 @@ if($ENV{USE_STANDALONE_EXECUTOR})
endif
()
set
(
TEST_CINN_OPS test_softmax_op test_expand_v2_op test_reduce_op
test_slice_op
)
test_slice_op
test_activation_op
)
foreach
(
TEST_CINN_OPS
${
TEST_CINN_OPS
}
)
if
(
WITH_CINN
)
...
...
python/paddle/fluid/tests/unittests/prim_op_test.py
浏览文件 @
cf209204
...
...
@@ -378,6 +378,11 @@ class PrimForwardChecker:
)
def
check
(
self
):
if
(
self
.
place
is
paddle
.
fluid
.
libpaddle
.
CUDAPlace
and
not
paddle
.
is_compiled_with_cuda
()
):
return
self
.
eager_desire
=
self
.
get_eager_desire
()
if
self
.
enable_check_static_comp
:
self
.
check_static_comp
()
...
...
@@ -773,6 +778,11 @@ class PrimGradChecker(PrimForwardChecker):
self
.
checker_name
=
"PrimGradChecker"
def
check
(
self
):
if
(
self
.
place
is
paddle
.
fluid
.
libpaddle
.
CUDAPlace
and
not
paddle
.
is_compiled_with_cuda
()
):
return
self
.
eager_desire
=
self
.
get_eager_desire
()
if
self
.
enable_check_eager_comp
:
self
.
check_eager_comp
()
...
...
python/paddle/fluid/tests/unittests/test_activation_op.py
浏览文件 @
cf209204
...
...
@@ -90,6 +90,72 @@ class TestActivation_ZeroDim(TestActivation):
self
.
shape
=
[]
class
TestExpPrimFp32
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"exp"
self
.
prim_op_type
=
"prim"
self
.
init_dtype
()
self
.
init_shape
()
self
.
python_api
=
paddle
.
exp
np
.
random
.
seed
(
2049
)
x
=
np
.
random
.
uniform
(
0.1
,
1
,
self
.
shape
).
astype
(
self
.
dtype
)
out
=
np
.
exp
(
x
)
self
.
inputs
=
{
'X'
:
OpTest
.
np_dtype_to_fluid_dtype
(
x
)}
self
.
outputs
=
{
'Out'
:
out
}
self
.
skip_cinn
()
self
.
set_only_prim
()
def
test_check_output
(
self
):
self
.
check_output
()
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
,
check_prim
=
True
)
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float32
def
init_shape
(
self
):
self
.
shape
=
[
12
,
17
]
def
skip_cinn
(
self
):
self
.
enable_cinn
=
False
def
set_only_prim
(
self
):
pass
class
TestExpPrimFp64
(
TestExpPrimFp32
):
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float64
class
TestExpPrimFp16
(
TestExpPrimFp32
):
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float16
def
set_only_prim
(
self
):
self
.
only_prim
=
True
def
test_check_output
(
self
):
self
.
check_output
()
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
,
check_prim
=
True
)
def
skip_cinn
(
self
):
self
.
enable_cinn
=
False
class
TestExpPrim_ZeroDim
(
TestExpPrimFp32
):
def
init_shape
(
self
):
self
.
shape
=
[]
def
skip_cinn
(
self
):
self
.
enable_cinn
=
False
class
TestExpm1
(
TestActivation
):
def
setUp
(
self
):
self
.
op_type
=
"expm1"
...
...
@@ -167,6 +233,8 @@ class TestExpm1API(unittest.TestCase):
class
TestParameter
:
def
test_out_name
(
self
):
with
fluid
.
program_guard
(
fluid
.
Program
()):
if
paddle
.
fluid
.
framework
.
in_dygraph_mode
():
paddle
.
enable_static
()
np_x
=
np
.
array
([
0.1
]).
astype
(
'float32'
).
reshape
((
-
1
,
1
))
data
=
paddle
.
static
.
data
(
name
=
"X"
,
shape
=
[
-
1
,
1
],
dtype
=
"float32"
)
out
=
eval
(
"paddle.%s(data, name='Y')"
%
self
.
op_type
)
...
...
@@ -1062,6 +1130,7 @@ class TestSoftshrinkAPI(unittest.TestCase):
class
TestSqrt
(
TestActivation
,
TestParameter
):
def
setUp
(
self
):
self
.
op_type
=
"sqrt"
self
.
prim_op_type
=
"prim"
self
.
python_api
=
paddle
.
sqrt
self
.
init_dtype
()
self
.
init_shape
()
...
...
@@ -1072,7 +1141,9 @@ class TestSqrt(TestActivation, TestParameter):
self
.
inputs
=
{
'X'
:
OpTest
.
np_dtype_to_fluid_dtype
(
x
)}
self
.
outputs
=
{
'Out'
:
out
}
self
.
enable_cinn
=
False
# TODO(wanghao107) add prim test
def
test_check_grad
(
self
):
if
self
.
dtype
==
np
.
float16
:
return
...
...
@@ -1082,17 +1153,58 @@ class TestSqrt(TestActivation, TestParameter):
self
.
check_output
(
check_eager
=
True
)
class
TestSqrtPrimFp32
(
TestActivation
):
def
setUp
(
self
):
self
.
op_type
=
"sqrt"
self
.
prim_op_type
=
"prim"
self
.
python_api
=
paddle
.
sqrt
self
.
init_dtype
()
self
.
init_shape
()
np
.
random
.
seed
(
1023
)
x
=
np
.
random
.
uniform
(
0.1
,
1
,
self
.
shape
).
astype
(
self
.
dtype
)
out
=
np
.
sqrt
(
x
)
self
.
inputs
=
{
'X'
:
OpTest
.
np_dtype_to_fluid_dtype
(
x
)}
self
.
outputs
=
{
'Out'
:
out
}
self
.
enable_cinn
=
False
def
test_check_grad
(
self
):
if
self
.
dtype
==
np
.
float16
:
return
self
.
check_grad
([
'X'
],
'Out'
,
check_eager
=
True
,
check_prim
=
True
)
def
test_check_output
(
self
):
self
.
check_output
(
check_eager
=
True
)
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float32
class
TestSqrt_ZeroDim
(
TestSqrt
):
def
init_shape
(
self
):
self
.
shape
=
[]
class
TestSqrtPrim_ZeroDim
(
TestSqrt
):
def
init_shape
(
self
):
self
.
shape
=
[]
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float32
def
test_check_grad
(
self
):
if
self
.
dtype
==
np
.
float16
:
return
self
.
check_grad
([
'X'
],
'Out'
,
check_prim
=
True
)
@
unittest
.
skipIf
(
not
core
.
is_compiled_with_cuda
(),
"core is not compiled with CUDA"
)
class
TestSqrtBF16
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"sqrt"
self
.
prim_op_type
=
"prim"
self
.
python_api
=
paddle
.
sqrt
self
.
init_dtype
()
self
.
init_shape
()
...
...
@@ -1105,6 +1217,8 @@ class TestSqrtBF16(OpTest):
'X'
:
OpTest
.
np_dtype_to_fluid_dtype
(
convert_float_to_uint16
(
x
))
}
self
.
outputs
=
{
'Out'
:
convert_float_to_uint16
(
out
)}
# TODO(wanghao107): add prim test
self
.
enable_cinn
=
False
def
init_dtype
(
self
):
self
.
dtype
=
np
.
uint16
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录