test_typing.py 3.7 KB
Newer Older
1
# Copyright (c) 2021 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
# 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.
14 15
import os
import tempfile
16 17 18
import paddle
import unittest
import numpy as np
19
from typing import Dict, List, Tuple
20 21 22


class BaseLayer(paddle.nn.Layer):
23

24 25 26 27 28 29 30 31 32 33 34
    def __init__(self, in_size, out_size):
        super(BaseLayer, self).__init__()
        self._linear = paddle.nn.Linear(in_size, out_size)

    def build(self, x):
        out1 = self._linear(x)
        out2 = paddle.mean(out1)
        return out1, out2


class LinearNetWithTuple(BaseLayer):
35

36 37 38 39 40 41 42 43 44
    def __init__(self, in_size, out_size):
        super(LinearNetWithTuple, self).__init__(in_size, out_size)

    def forward(self, x) -> Tuple[paddle.Tensor, str]:
        out1, out2 = self.build(x)
        return (out2, 'str')


class LinearNetWithTuple2(BaseLayer):
45

46 47 48 49 50 51 52 53 54
    def __init__(self, in_size, out_size):
        super(LinearNetWithTuple2, self).__init__(in_size, out_size)

    def forward(self, x) -> Tuple[paddle.Tensor, np.array]:
        out1, out2 = self.build(x)
        return (out2, np.ones([4, 16]))


class LinearNetWithList(BaseLayer):
55

56 57 58 59 60 61 62 63 64
    def __init__(self, in_size, out_size):
        super(LinearNetWithList, self).__init__(in_size, out_size)

    def forward(self, x) -> List[paddle.Tensor]:
        out1, out2 = self.build(x)
        return [out2]


class LinearNetWithDict(BaseLayer):
65

66 67 68 69 70 71 72 73 74
    def __init__(self, in_size, out_size):
        super(LinearNetWithDict, self).__init__(in_size, out_size)

    def forward(self, x) -> Dict[str, paddle.Tensor]:
        out1, out2 = self.build(x)
        return {'out': out2}


class TestTyping(unittest.TestCase):
75

76 77 78 79 80 81
    def setUp(self):
        self.in_num = 16
        self.out_num = 16
        self.x = paddle.randn([4, 16])
        self.spec = [paddle.static.InputSpec(shape=[None, 16], dtype='float32')]

82 83 84 85 86
        self.temp_dir = tempfile.TemporaryDirectory()

    def tearDown(self):
        self.temp_dir.cleanup()

87 88 89 90
    def build_net(self):
        return LinearNetWithTuple(self.in_num, self.out_num)

    def save_and_load(self, suffix=''):
91
        path = os.path.join(self.temp_dir.name, 'layer_typing_' + suffix)
92 93 94 95 96 97 98 99 100 101 102 103
        paddle.jit.save(self.net, path, input_spec=self.spec)
        return paddle.jit.load(path)

    def run_dy(self):
        out, _ = self.net(self.x)
        return out

    def test_type(self):
        self.net = self.build_net()
        out = self.run_dy()
        load_net = self.save_and_load('tuple')
        load_out = load_net(self.x)
104
        np.testing.assert_allclose(out, load_out, rtol=1e-05)
105 106 107


class TestTypingTuple(TestTyping):
108

109 110 111 112 113 114 115 116 117 118
    def build_net(self):
        return LinearNetWithTuple2(self.in_num, self.out_num)

    def run_dy(self):
        out, np_data = self.net(self.x)
        self.assertTrue(np.equal(np_data, np.ones_like(np_data)).all())
        return out


class TestTypingList(TestTyping):
119

120 121 122 123 124 125 126 127 128
    def build_net(self):
        return LinearNetWithList(self.in_num, self.out_num)

    def run_dy(self):
        out = self.net(self.x)[0]
        return out


class TestTypingDict(TestTyping):
129

130 131 132 133 134 135 136 137 138 139
    def build_net(self):
        return LinearNetWithDict(self.in_num, self.out_num)

    def run_dy(self):
        out = self.net(self.x)['out']
        return out


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