forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cherry pick]add warning message when dtypes of operator are not same (…
…PaddlePaddle#31136) (PaddlePaddle#31175) ATT, cherry-pick PaddlePaddle#31136
- Loading branch information
1 parent
a19154c
commit b0ec6e8
Showing
2 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
python/paddle/fluid/tests/unittests/test_tensor_type_promotion.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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() |