test_softplus_mkldnn_op.py 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#   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.

import unittest
16

17
import numpy as np
18 19

import paddle
20
from paddle.fluid.tests.unittests.eager_op_test import (
21 22 23 24
    OpTest,
    OpTestTool,
    convert_float_to_uint16,
)
25 26 27 28


def ref_softplus(x, beta, threshold):
    x_beta = beta * x
29 30 31 32
    out = np.select(
        [x_beta <= threshold, x_beta > threshold],
        [np.log(1 + np.exp(x_beta)) / beta, x],
    )
33 34 35
    return out


36
@OpTestTool.skip_if_not_cpu_bf16()
37 38 39 40 41 42
class TestSoftplusOneDNNOp(OpTest):
    def setUp(self):
        self.op_type = "softplus"
        self.beta = 1
        self.threshold = 20
        self.config()
43
        self.set_dtype()
44
        self.attrs = {'use_mkldnn': True, 'beta': self.beta}
45 46 47 48 49 50 51
        self.x = np.random.random(self.x_shape)
        self.out = ref_softplus(self.x, self.beta, self.threshold)

        if self.dtype != np.float32:
            self.x = convert_float_to_uint16(self.x)

        self.inputs = {'X': self.out}
52
        self.outputs = {
53
            'Out': ref_softplus(self.out, self.beta, self.threshold)
54 55 56 57 58
        }

    def config(self):
        self.x_shape = (10, 10)

59 60 61
    def set_dtype(self):
        self.dtype = np.float32

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
    def test_check_output(self):
        self.check_output()


class TestSoftplus4DOneDNNOp(TestSoftplusOneDNNOp):
    def config(self):
        self.x_shape = (10, 5, 4, 2)


class TestSoftplus6DOneDNNOp(TestSoftplusOneDNNOp):
    def config(self):
        self.x_shape = (3, 2, 2, 5, 4, 2)


class TestSoftplus6DExtendedFunctorOneDNNOp(TestSoftplusOneDNNOp):
    def config(self):
        self.x_shape = (3, 5, 2, 5, 4, 2)
        self.beta = 2.5


class TestSoftplus3DExtendedFunctorOneDNNOp(TestSoftplusOneDNNOp):
    def config(self):
        self.x_shape = (20, 4, 2)
        self.beta = 0.4


88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
class TestSoftplusBF16OneDNNOp(TestSoftplusOneDNNOp):
    def set_dtype(self):
        self.dtype = np.uint16


class TestSoftplus4DBF16OneDNNOp(TestSoftplus4DOneDNNOp):
    def set_dtype(self):
        self.dtype = np.uint16


class TestSoftplus6DBF16OneDNNOp(TestSoftplus6DOneDNNOp):
    def set_dtype(self):
        self.dtype = np.uint16


class TestSoftplus3DExtendedFunctorBF16OneDNNOp(
104 105
    TestSoftplus3DExtendedFunctorOneDNNOp
):
106 107 108 109
    def set_dtype(self):
        self.dtype = np.uint16


110 111 112
if __name__ == "__main__":
    paddle.enable_static()
    unittest.main()