Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
b0ec6e84
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b0ec6e84
编写于
2月 24, 2021
作者:
C
chentianyu03
提交者:
GitHub
2月 24, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[cherry pick]add warning message when dtypes of operator are not same (#31136) (#31175)
ATT, cherry-pick #31136
上级
a19154ca
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
71 addition
and
1 deletion
+71
-1
python/paddle/fluid/dygraph/math_op_patch.py
python/paddle/fluid/dygraph/math_op_patch.py
+12
-1
python/paddle/fluid/tests/unittests/test_tensor_type_promotion.py
...addle/fluid/tests/unittests/test_tensor_type_promotion.py
+59
-0
未找到文件。
python/paddle/fluid/dygraph/math_op_patch.py
浏览文件 @
b0ec6e84
...
...
@@ -21,6 +21,7 @@ from . import no_grad
import
numpy
as
np
import
six
import
warnings
_supported_int_dtype_
=
[
core
.
VarDesc
.
VarType
.
UINT8
,
...
...
@@ -51,6 +52,11 @@ _supported_promote_complex_types_ = [
'__matmul__'
,
]
_complex_dtypes
=
[
core
.
VarDesc
.
VarType
.
COMPLEX64
,
core
.
VarDesc
.
VarType
.
COMPLEX128
,
]
_already_patch_varbase
=
False
...
...
@@ -214,7 +220,9 @@ def monkey_patch_math_varbase():
# 3. promote types or unify right var type to left var
rhs_dtype
=
other_var
.
dtype
if
lhs_dtype
!=
rhs_dtype
:
if
method_name
in
_supported_promote_complex_types_
:
if
method_name
in
_supported_promote_complex_types_
and
(
lhs_dtype
in
_complex_dtypes
or
rhs_dtype
in
_complex_dtypes
):
# only when lhs_dtype or rhs_dtype is complex type,
# the dtype will promote, in other cases, directly
# use lhs_dtype, this is consistent will original rule
...
...
@@ -225,6 +233,9 @@ def monkey_patch_math_varbase():
other_var
=
other_var
if
rhs_dtype
==
promote_dtype
else
astype
(
other_var
,
promote_dtype
)
else
:
warnings
.
warn
(
'The dtype of left and right variables are not the same, left dtype is {}, but right dtype is {}, the right dtype will convert to {}'
.
format
(
lhs_dtype
,
rhs_dtype
,
lhs_dtype
))
other_var
=
astype
(
other_var
,
lhs_dtype
)
if
reverse
:
...
...
python/paddle/fluid/tests/unittests/test_tensor_type_promotion.py
0 → 100644
浏览文件 @
b0ec6e84
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
__future__
import
print_function
,
division
import
unittest
import
numpy
as
np
import
warnings
import
paddle
class
TestTensorTypePromotion
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
x
=
paddle
.
to_tensor
([
2
,
3
])
self
.
y
=
paddle
.
to_tensor
([
1.0
,
2.0
])
def
test_operator
(
self
):
with
warnings
.
catch_warnings
(
record
=
True
)
as
context
:
warnings
.
simplefilter
(
"always"
)
self
.
x
+
self
.
y
self
.
assertTrue
(
"The dtype of left and right variables are not the same"
in
str
(
context
[
-
1
].
message
))
with
warnings
.
catch_warnings
(
record
=
True
)
as
context
:
warnings
.
simplefilter
(
"always"
)
self
.
x
-
self
.
y
self
.
assertTrue
(
"The dtype of left and right variables are not the same"
in
str
(
context
[
-
1
].
message
))
with
warnings
.
catch_warnings
(
record
=
True
)
as
context
:
warnings
.
simplefilter
(
"always"
)
self
.
x
*
self
.
y
self
.
assertTrue
(
"The dtype of left and right variables are not the same"
in
str
(
context
[
-
1
].
message
))
with
warnings
.
catch_warnings
(
record
=
True
)
as
context
:
warnings
.
simplefilter
(
"always"
)
self
.
x
/
self
.
y
self
.
assertTrue
(
"The dtype of left and right variables are not the same"
in
str
(
context
[
-
1
].
message
))
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录