test_zeros_like_op.py 3.2 KB
Newer Older
1
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2
#
3 4 5
# 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
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9 10 11 12 13 14 15 16 17 18 19 20 21
# 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
from paddle import zeros_like
from paddle.fluid import core, Program, program_guard
22
from paddle.fluid.framework import _test_eager_guard
23 24 25


class TestZerosLikeAPIError(unittest.TestCase):
26

27 28
    def test_errors(self):
        with program_guard(Program(), Program()):
29
            x = paddle.fluid.data('x', [3, 4])
30 31
            self.assertRaises(TypeError, zeros_like, x, 'int8')

32 33 34 35
    def test_eager(self):
        with _test_eager_guard():
            self.test_errors()

36 37

class TestZerosLikeAPI(unittest.TestCase):
38

39 40 41 42 43
    def test_api(self):
        shape = [3, 4]
        startup_program = Program()
        train_program = Program()
        with program_guard(train_program, startup_program):
44
            x = paddle.fluid.data('X', shape)
45
            out1 = zeros_like(x)
46
            out2 = zeros_like(x, np.bool_)
47 48 49
            out3 = zeros_like(x, 'float64')
            out4 = zeros_like(x, 'int32')
            out5 = zeros_like(x, 'int64')
50 51
        place = (fluid.CUDAPlace(0)
                 if core.is_compiled_with_cuda() else fluid.CPUPlace())
52 53 54 55
        exe = fluid.Executor(place)
        outs = exe.run(train_program,
                       feed={'X': np.ones(shape).astype('float32')},
                       fetch_list=[out1, out2, out3, out4, out5])
56
        for (i, dtype) in enumerate(
57
            [np.float32, np.bool_, np.float64, np.int32, np.int64]):
58 59 60
            self.assertEqual(outs[i].dtype, dtype)
            self.assertEqual((outs[i] == np.zeros(shape, dtype)).all(), True)

61 62 63 64
    def test_eager(self):
        with _test_eager_guard():
            self.test_api()

65 66

class TestZerosLikeImpeartive(unittest.TestCase):
67

68 69
    def test_out(self):
        shape = [3, 4]
70 71
        place = (fluid.CUDAPlace(0)
                 if core.is_compiled_with_cuda() else fluid.CPUPlace())
72
        paddle.disable_static(place)
Z
Zhou Wei 已提交
73
        x = paddle.to_tensor(np.ones(shape))
74
        for dtype in [np.bool_, np.float32, np.float64, np.int32, np.int64]:
75
            out = zeros_like(x, dtype)
76 77
            self.assertEqual((out.numpy() == np.zeros(shape, dtype)).all(),
                             True)
78 79 80 81 82
        out = paddle.tensor.zeros_like(x)
        self.assertEqual((out.numpy() == np.zeros(shape, dtype)).all(), True)
        out = paddle.tensor.creation.zeros_like(x)
        self.assertEqual((out.numpy() == np.zeros(shape, dtype)).all(), True)
        paddle.enable_static()
83

84 85 86 87
    def test_eager(self):
        with _test_eager_guard():
            self.test_out()

88

89
if (__name__ == '__main__'):
90
    unittest.main()