-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
132 additions
and
21 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Copyright (c) 2019 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 | ||
|
||
import unittest | ||
import numpy as np | ||
import paddle | ||
import paddle.fluid as fluid | ||
import paddle.fluid.core as core | ||
from paddle.fluid import Program, program_guard | ||
from op_test import OpTest | ||
|
||
paddle.enable_static() | ||
|
||
|
||
class TestDeg2radAPI(unittest.TestCase): | ||
def setUp(self): | ||
self.x_dtype = 'float64' | ||
self.x_np = np.array( | ||
[180.0, -180.0, 360.0, -360.0, 90.0, -90.0]).astype(np.float64) | ||
self.x_shape = [6] | ||
self.out_np = np.deg2rad(self.x_np) | ||
|
||
def test_static_graph(self): | ||
startup_program = fluid.Program() | ||
train_program = fluid.Program() | ||
with fluid.program_guard(startup_program, train_program): | ||
x = fluid.data(name='input', dtype=self.x_dtype, shape=self.x_shape) | ||
out = paddle.deg2rad(x) | ||
|
||
place = fluid.CUDAPlace(0) if core.is_compiled_with_cuda( | ||
) else fluid.CPUPlace() | ||
exe = fluid.Executor(place) | ||
res = exe.run(fluid.default_main_program(), | ||
feed={'input': self.x_np}, | ||
fetch_list=[out]) | ||
self.assertTrue((np.array(out[0]) == self.out_np).all()) | ||
|
||
def test_dygraph(self): | ||
paddle.disable_static() | ||
x1 = paddle.to_tensor([180.0, -180.0, 360.0, -360.0, 90.0, -90.0]) | ||
result1 = paddle.deg2rad(x1) | ||
self.assertEqual(np.allclose(self.out_np, result1.numpy()), True) | ||
|
||
paddle.enable_static() | ||
|
||
|
||
class TestDeg2radAPI2(TestDeg2radAPI): | ||
# Test input data type is int | ||
def setUp(self): | ||
self.x_np = 180 | ||
self.x_shape = [1] | ||
self.out_np = np.pi | ||
self.x_dtype = 'int64' | ||
|
||
def test_dygraph(self): | ||
paddle.disable_static() | ||
|
||
x2 = paddle.to_tensor(180) | ||
result2 = paddle.deg2rad(x2) | ||
self.assertEqual(np.allclose(np.pi, result2.numpy()), True) | ||
|
||
paddle.enable_static() |
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
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
1667e46
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🕵️ CI failures summary
🔍 PR: #37598 Commit ID: 1667e46 contains failed CI.
🔹 Failed: PR-CI-GpuPS
failed in build-docker-image job