Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
1e02769b
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看板
未验证
提交
1e02769b
编写于
2月 28, 2023
作者:
陈
陈沧夜
提交者:
GitHub
2月 28, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add float16 to equal (#50933)
上级
69d49aba
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
16 addition
and
4 deletion
+16
-4
python/paddle/fluid/tests/unittests/test_compare_op.py
python/paddle/fluid/tests/unittests/test_compare_op.py
+12
-0
python/paddle/tensor/logic.py
python/paddle/tensor/logic.py
+4
-4
未找到文件。
python/paddle/fluid/tests/unittests/test_compare_op.py
浏览文件 @
1e02769b
...
@@ -467,6 +467,18 @@ class API_TestElementwise_Equal(unittest.TestCase):
...
@@ -467,6 +467,18 @@ class API_TestElementwise_Equal(unittest.TestCase):
(
res
,)
=
exe
.
run
(
fetch_list
=
[
out
])
(
res
,)
=
exe
.
run
(
fetch_list
=
[
out
])
self
.
assertEqual
((
res
==
np
.
array
([
True
,
True
])).
all
(),
True
)
self
.
assertEqual
((
res
==
np
.
array
([
True
,
True
])).
all
(),
True
)
def
test_api_fp16
(
self
):
paddle
.
enable_static
()
with
fluid
.
program_guard
(
fluid
.
Program
(),
fluid
.
Program
()):
label
=
paddle
.
to_tensor
([
3
,
3
],
dtype
=
"float16"
)
limit
=
paddle
.
to_tensor
([
3
,
2
],
dtype
=
"float16"
)
out
=
paddle
.
equal
(
x
=
label
,
y
=
limit
)
if
core
.
is_compiled_with_cuda
():
place
=
paddle
.
CUDAPlace
(
0
)
exe
=
fluid
.
Executor
(
place
)
(
res
,)
=
exe
.
run
(
fetch_list
=
[
out
])
self
.
assertEqual
((
res
==
np
.
array
([
True
,
False
])).
all
(),
True
)
class
TestCompareOpPlace
(
unittest
.
TestCase
):
class
TestCompareOpPlace
(
unittest
.
TestCase
):
def
test_place_1
(
self
):
def
test_place_1
(
self
):
...
...
python/paddle/tensor/logic.py
浏览文件 @
1e02769b
...
@@ -431,8 +431,8 @@ def equal(x, y, name=None):
...
@@ -431,8 +431,8 @@ def equal(x, y, name=None):
The output has no gradient.
The output has no gradient.
Args:
Args:
x(Tensor): Tensor, data type is bool, float32, float64, int32, int64.
x(Tensor): Tensor, data type is bool, float
16, float
32, float64, int32, int64.
y(Tensor): Tensor, data type is bool, float32, float64, int32, int64.
y(Tensor): Tensor, data type is bool, float
16, float
32, float64, int32, int64.
name(str, optional): The default value is None. Normally there is no need for
name(str, optional): The default value is None. Normally there is no need for
user to set this property. For more information, please refer to :ref:`api_guide_Name`.
user to set this property. For more information, please refer to :ref:`api_guide_Name`.
...
@@ -465,13 +465,13 @@ def equal(x, y, name=None):
...
@@ -465,13 +465,13 @@ def equal(x, y, name=None):
check_variable_and_dtype
(
check_variable_and_dtype
(
x
,
x
,
"x"
,
"x"
,
[
"bool"
,
"float32"
,
"float64"
,
"int32"
,
"int64"
],
[
"bool"
,
"float
16"
,
"float
32"
,
"float64"
,
"int32"
,
"int64"
],
"equal"
,
"equal"
,
)
)
check_variable_and_dtype
(
check_variable_and_dtype
(
y
,
y
,
"y"
,
"y"
,
[
"bool"
,
"float32"
,
"float64"
,
"int32"
,
"int64"
],
[
"bool"
,
"float
16"
,
"float
32"
,
"float64"
,
"int32"
,
"int64"
],
"equal"
,
"equal"
,
)
)
helper
=
LayerHelper
(
"equal"
,
**
locals
())
helper
=
LayerHelper
(
"equal"
,
**
locals
())
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录