test_gcd.py 2.8 KB
Newer Older
T
Tao Luo 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#   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.

import unittest
16

T
Tao Luo 已提交
17
import numpy as np
18

T
Tao Luo 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
import paddle
import paddle.fluid as fluid
import paddle.fluid.core as core

paddle.enable_static()


class TestGcdAPI(unittest.TestCase):
    def setUp(self):
        self.x_np = 12
        self.y_np = 20
        self.x_shape = [1]
        self.y_shape = [1]

    def test_static_graph(self):
        startup_program = fluid.Program()
        train_program = fluid.Program()
        with fluid.program_guard(startup_program, train_program):
37 38 39 40 41 42
            x = paddle.static.data(
                name='input1', dtype='int32', shape=self.x_shape
            )
            y = paddle.static.data(
                name='input2', dtype='int32', shape=self.y_shape
            )
T
Tao Luo 已提交
43 44
            out = paddle.gcd(x, y)

45 46 47 48 49
            place = (
                fluid.CUDAPlace(0)
                if core.is_compiled_with_cuda()
                else fluid.CPUPlace()
            )
T
Tao Luo 已提交
50
            exe = fluid.Executor(place)
51 52 53 54 55 56 57 58
            res = exe.run(
                fluid.default_main_program(),
                feed={'input1': self.x_np, 'input2': self.y_np},
                fetch_list=[out],
            )
            self.assertTrue(
                (np.array(res[0]) == np.gcd(self.x_np, self.y_np)).all()
            )
T
Tao Luo 已提交
59 60 61 62 63 64

    def test_dygraph(self):
        paddle.disable_static()
        x = paddle.to_tensor(self.x_np)
        y = paddle.to_tensor(self.y_np)
        result = paddle.gcd(x, y)
65 66 67
        np.testing.assert_allclose(
            np.gcd(self.x_np, self.y_np), result.numpy(), rtol=1e-05
        )
T
Tao Luo 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

        paddle.enable_static()


class TestGcdAPI2(TestGcdAPI):
    def setUp(self):
        self.x_np = np.arange(6).astype(np.int32)
        self.y_np = np.array([20]).astype(np.int32)
        self.x_shape = [6]
        self.y_shape = [1]


class TestGcdAPI3(TestGcdAPI):
    def setUp(self):
        self.x_np = 0
        self.y_np = 20
        self.x_shape = [1]
        self.y_shape = [1]


class TestGcdAPI4(TestGcdAPI):
    def setUp(self):
        self.x_np = 0
        self.y_np = 0
        self.x_shape = [1]
        self.y_shape = [1]


class TestGcdAPI5(TestGcdAPI):
    def setUp(self):
        self.x_np = 12
        self.y_np = -20
        self.x_shape = [1]
        self.y_shape = [1]