add warning message when dtypes of operator are not same (#31136)
* add error msg when dtypes of operator are not same * add error msg when dtypes of operator are not same * change error msg to warning msg when dtypes of operator are not same * modify test case to fit for python2revert-31068-fix_conv3d_windows
parent
be61c2d06b
commit
70131b475f
@ -0,0 +1,59 @@
|
|||||||
|
# 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()
|
Loading…
Reference in new issue