functional_layers.py 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2021 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.

15
from ...tensor import linalg, manipulation, math
Z
zhiboniu 已提交
16
from .. import Layer
17 18 19 20

__all__ = []


Z
zhiboniu 已提交
21
class FloatFunctionalLayer(Layer):
22
    def __init__(self):
23
        super().__init__()
24 25 26 27


class add(FloatFunctionalLayer):
    def __init__(self):
28
        super().__init__()
29 30 31 32 33 34 35

    def forward(self, x, y, name=None):
        return math.add(x, y, name)


class subtract(FloatFunctionalLayer):
    def __init__(self):
36
        super().__init__()
37 38 39 40 41 42 43

    def forward(self, x, y, name=None):
        return math.subtract(x, y, name)


class multiply(FloatFunctionalLayer):
    def __init__(self):
44
        super().__init__()
45 46 47 48 49 50 51

    def forward(self, x, y, name=None):
        return math.multiply(x, y, name)


class divide(FloatFunctionalLayer):
    def __init__(self):
52
        super().__init__()
53 54 55 56 57 58 59

    def forward(self, x, y, name=None):
        return math.divide(x, y, name)


class reshape(FloatFunctionalLayer):
    def __init__(self):
60
        super().__init__()
61 62 63 64 65 66 67

    def forward(self, x, shape, name=None):
        return manipulation.reshape(x, shape, name)


class transpose(FloatFunctionalLayer):
    def __init__(self):
68
        super().__init__()
69 70 71 72 73 74 75

    def forward(self, x, perm, name=None):
        return manipulation.transpose(x, perm, name)


class concat(FloatFunctionalLayer):
    def __init__(self):
76
        super().__init__()
77 78 79 80 81 82 83

    def forward(self, x, axis=0, name=None):
        return manipulation.concat(x, axis, name)


class flatten(FloatFunctionalLayer):
    def __init__(self):
84
        super().__init__()
85 86 87

    def forward(self, x, start_axis=0, stop_axis=-1, name=None):
        return manipulation.flatten(x, start_axis, stop_axis, name)
88 89 90 91 92 93 94 95


class matmul(FloatFunctionalLayer):
    def __init__(self):
        super().__init__()

    def forward(self, x, y, transpose_x=False, transpose_y=False, name=None):
        return linalg.matmul(x, y, transpose_x, transpose_y, name)