test_trace_op.py 3.2 KB
Newer Older
L
Li Fuchen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# Copyright (c) 2020 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
from op_test import OpTest
import paddle.nn.functional as F
import paddle.fluid as fluid
import paddle.fluid.core as core
import paddle.tensor as tensor
H
hong 已提交
24
import paddle
L
Li Fuchen 已提交
25 26 27


class TestTraceOp(OpTest):
28

L
Li Fuchen 已提交
29 30
    def setUp(self):
        self.op_type = "trace"
31
        self.python_api = paddle.trace
L
Li Fuchen 已提交
32 33 34 35
        self.init_config()
        self.outputs = {'Out': self.target}

    def test_check_output(self):
36
        self.check_output(check_eager=True)
L
Li Fuchen 已提交
37 38

    def test_check_grad(self):
39
        self.check_grad(['Input'], 'Out', check_eager=True)
L
Li Fuchen 已提交
40 41 42 43

    def init_config(self):
        self.case = np.random.randn(20, 6).astype('float64')
        self.inputs = {'Input': self.case}
44
        self.attrs = {'offset': 0, 'axis1': 0, 'axis2': 1}
L
Li Fuchen 已提交
45 46 47 48
        self.target = np.trace(self.inputs['Input'])


class TestTraceOpCase1(TestTraceOp):
49

L
Li Fuchen 已提交
50 51 52
    def init_config(self):
        self.case = np.random.randn(2, 20, 2, 3).astype('float32')
        self.inputs = {'Input': self.case}
53
        self.attrs = {'offset': 1, 'axis1': 0, 'axis2': 2}
54 55 56 57
        self.target = np.trace(self.inputs['Input'],
                               offset=self.attrs['offset'],
                               axis1=self.attrs['axis1'],
                               axis2=self.attrs['axis2'])
L
Li Fuchen 已提交
58 59 60


class TestTraceOpCase2(TestTraceOp):
61

L
Li Fuchen 已提交
62 63 64
    def init_config(self):
        self.case = np.random.randn(2, 20, 2, 3).astype('float32')
        self.inputs = {'Input': self.case}
65
        self.attrs = {'offset': -5, 'axis1': 1, 'axis2': -1}
66 67 68 69
        self.target = np.trace(self.inputs['Input'],
                               offset=self.attrs['offset'],
                               axis1=self.attrs['axis1'],
                               axis2=self.attrs['axis2'])
L
Li Fuchen 已提交
70 71 72


class TestTraceAPICase(unittest.TestCase):
73

L
Li Fuchen 已提交
74 75 76 77
    def test_case1(self):
        case = np.random.randn(2, 20, 2, 3).astype('float32')
        data1 = fluid.data(name='data1', shape=[2, 20, 2, 3], dtype='float32')
        out1 = tensor.trace(data1)
78
        out2 = tensor.trace(data1, offset=-5, axis1=1, axis2=-1)
L
Li Fuchen 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92

        place = core.CPUPlace()
        exe = fluid.Executor(place)
        results = exe.run(fluid.default_main_program(),
                          feed={"data1": case},
                          fetch_list=[out1, out2],
                          return_numpy=True)
        target1 = np.trace(case)
        target2 = np.trace(case, offset=-5, axis1=1, axis2=-1)
        self.assertTrue(np.allclose(results[0], target1))
        self.assertTrue(np.allclose(results[1], target2))


if __name__ == "__main__":
H
hong 已提交
93
    paddle.enable_static()
L
Li Fuchen 已提交
94
    unittest.main()