test_fc_op.py 3.5 KB
Newer Older
T
tensor-tang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# Copyright (c) 2018 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
import numpy as np
from op_test import OpTest


20
def fc_refer(matrix, with_bias, with_relu=False):
T
tensor-tang 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33
    in_n, in_c, in_h, in_w = matrix.input.shape
    w_i, w_o = matrix.weights.shape

    x_data = np.reshape(matrix.input, [in_n, in_c * in_h * in_w])
    w_data = np.reshape(matrix.weights, [w_i, w_o])
    b_data = np.reshape(matrix.bias, [1, w_o])
    result = None

    if with_bias:
        result = np.dot(x_data, w_data) + b_data
    else:
        result = np.dot(x_data, w_data)

34 35 36 37
    if with_relu:
        return np.maximum(result, 0)
    else:
        return result
T
tensor-tang 已提交
38 39 40


class MatrixGenerate:
41
    def __init__(self, mb, ic, oc, h, w, bias_dims=2):
T
tensor-tang 已提交
42 43
        self.input = np.random.random((mb, ic, h, w)).astype("float32")
        self.weights = np.random.random((ic * h * w, oc)).astype("float32")
44 45 46 47
        if bias_dims == 2:
            self.bias = np.random.random((1, oc)).astype("float32")
        else:
            self.bias = np.random.random((oc)).astype("float32")
T
tensor-tang 已提交
48 49 50


class TestFCOp(OpTest):
51 52 53 54 55
    def config(self):
        self.with_bias = True
        self.with_relu = True
        self.matrix = MatrixGenerate(1, 10, 15, 3, 3, 2)

T
tensor-tang 已提交
56 57
    def setUp(self):
        self.op_type = "fc"
58
        self.config()
T
tensor-tang 已提交
59 60 61 62 63 64 65 66 67 68

        if self.with_bias:
            self.inputs = {
                'Input': self.matrix.input,
                'W': self.matrix.weights,
                'Bias': self.matrix.bias
            }
        else:
            self.inputs = {'Input': self.matrix.input, 'W': self.matrix.weights}

69 70 71 72 73
        if self.with_relu:
            activation_type = "relu"
        else:
            activation_type = ""
        self.attrs = {'use_mkldnn': False, 'activation_type': activation_type}
T
tensor-tang 已提交
74

75 76 77
        self.outputs = {
            'Out': fc_refer(self.matrix, self.with_bias, self.with_relu)
        }
T
tensor-tang 已提交
78 79 80 81 82

    def test_check_output(self):
        self.check_output()


83 84
class TestFCOpNoBias1(TestFCOp):
    def config(self):
85
        self.with_bias = False
86 87
        self.with_relu = False
        self.matrix = MatrixGenerate(2, 8, 10, 1, 1, 2)
88

T
tensor-tang 已提交
89

90 91 92 93 94
class TestFCOpNoBias2(TestFCOp):
    def config(self):
        self.with_bias = False
        self.with_relu = False
        self.matrix = MatrixGenerate(4, 5, 6, 2, 2, 1)
T
tensor-tang 已提交
95 96


97 98 99 100 101
class TestFCOpNoBias4(TestFCOp):
    def config(self):
        self.with_bias = False
        self.with_relu = False
        self.matrix = MatrixGenerate(1, 32, 64, 3, 3, 1)
T
tensor-tang 已提交
102 103


104 105 106 107 108
class TestFCOpWithBias1(TestFCOp):
    def config(self):
        self.with_bias = True
        self.with_relu = False
        self.matrix = MatrixGenerate(3, 8, 10, 2, 1, 2)
109 110


111 112 113 114 115
class TestFCOpWithBias2(TestFCOp):
    def config(self):
        self.with_bias = True
        self.with_relu = True
        self.matrix = MatrixGenerate(4, 5, 6, 2, 2, 1)
116 117


118 119 120 121 122
class TestFCOpWithBias3(TestFCOp):
    def config(self):
        self.with_bias = True
        self.with_relu = True
        self.matrix = MatrixGenerate(1, 64, 32, 3, 3, 1)
123 124


T
tensor-tang 已提交
125 126
if __name__ == "__main__":
    unittest.main()