Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
47c740e7
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看板
未验证
提交
47c740e7
编写于
4月 07, 2023
作者:
C
cyberslack_lee
提交者:
GitHub
4月 07, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
【Hackathon4】No58. empty (#52388)
上级
36ec9d2f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
45 addition
and
2 deletion
+45
-2
python/paddle/fluid/tests/unittests/test_empty_op.py
python/paddle/fluid/tests/unittests/test_empty_op.py
+45
-2
未找到文件。
python/paddle/fluid/tests/unittests/test_empty_op.py
浏览文件 @
47c740e7
...
...
@@ -15,10 +15,11 @@
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
import
fluid
from
paddle.fluid
import
core
from
paddle.fluid.framework
import
convert_np_dtype_to_dtype_
...
...
@@ -33,7 +34,7 @@ class TestEmptyOp(OpTest):
def
verify_output
(
self
,
outs
):
data_type
=
outs
[
0
].
dtype
if
data_type
in
[
'float32'
,
'float64'
,
'int32'
,
'int64'
]:
if
data_type
in
[
'float
16'
,
'float
32'
,
'float64'
,
'int32'
,
'int64'
]:
max_value
=
np
.
nanmax
(
outs
[
0
])
min_value
=
np
.
nanmin
(
outs
[
0
])
...
...
@@ -279,6 +280,48 @@ class TestEmptyAPI(unittest.TestCase):
self
.
__check_out__
(
res_6
,
dtype
)
class
TestEmptyFP16Op
(
TestEmptyOp
):
def
init_config
(
self
):
shape
=
[
500
,
3
]
self
.
dtype
=
np
.
float16
dtype_inner
=
convert_np_dtype_to_dtype_
(
self
.
dtype
)
self
.
attrs
=
{
'shape'
:
shape
,
'dtype'
:
dtype_inner
}
self
.
inputs
=
{}
self
.
outputs
=
{
'Out'
:
np
.
zeros
(
shape
).
astype
(
self
.
dtype
)}
@
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
TestEmptyBF16Op
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
'empty'
self
.
dtype
=
np
.
uint16
self
.
__class__
.
op_type
=
self
.
op_type
self
.
python_api
=
paddle
.
empty
shape
=
np
.
array
([
200
,
3
]).
astype
(
'int32'
)
dtype_inner
=
convert_np_dtype_to_dtype_
(
self
.
dtype
)
output
=
np
.
zeros
(
shape
).
astype
(
self
.
dtype
)
self
.
inputs
=
{}
self
.
attrs
=
{
'shape'
:
shape
,
'dtype'
:
dtype_inner
}
self
.
outputs
=
{
'Out'
:
convert_float_to_uint16
(
output
)}
def
test_check_output
(
self
):
self
.
check_output_customized
(
self
.
verify_output
)
def
verify_output
(
self
,
outs
):
max_value
=
np
.
nanmax
(
outs
[
0
])
min_value
=
np
.
nanmin
(
outs
[
0
])
always_full_zero
=
max_value
==
0.0
and
min_value
==
0.0
always_non_full_zero
=
max_value
>=
min_value
self
.
assertTrue
(
always_full_zero
or
always_non_full_zero
,
'always_full_zero or always_non_full_zero.'
,
)
class
TestEmptyError
(
unittest
.
TestCase
):
def
test_attr
(
self
):
def
test_dtype
():
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录