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

import unittest
16

17
import numpy as np
18 19

from paddle import enable_static
20
from paddle.fluid import core
21
from paddle.fluid.tests.unittests.eager_op_test import convert_float_to_uint16
22 23 24 25 26 27 28 29
from paddle.fluid.tests.unittests.test_softmax_op import (
    TestSoftmaxOp,
    TestSoftmaxOp2,
    TestSoftmaxOp3,
    TestSoftmaxOp4,
    TestSoftmaxOp5,
    TestSoftmaxOp6,
)
30 31 32 33


def stable_softmax(x):
    """Compute the softmax of vector x in a numerically stable way."""
34
    shiftx = x - np.max(x).clip(-64.0)
35 36 37 38
    exps = np.exp(shiftx)
    return exps / np.sum(exps)


39 40 41
@unittest.skipIf(
    not core.supports_bfloat16(), "place does not support BF16 evaluation"
)
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
class TestSoftmaxMKLDNNOp(TestSoftmaxOp):
    def get_x_shape(self):
        return [10, 10]

    def get_axis(self):
        return -1

    def setUp(self):
        self.op_type = "softmax"
        self.use_mkldnn = True
        self.dtype = np.uint16
        self.init_kernel_type()
        self.shape = self.get_x_shape()
        self.axis = self.get_axis()

57
        x = np.random.uniform(0.1, 1, self.shape).astype(np.float64)
58
        out = convert_float_to_uint16(
59 60
            np.apply_along_axis(stable_softmax, self.axis, x)
        )
61 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

        self.inputs = {'X': convert_float_to_uint16(x)}
        self.outputs = {'Out': out}
        self.attrs = {'axis': self.axis, 'use_mkldnn': self.use_mkldnn}

    def test_check_output(self):
        self.check_output_with_place(core.CPUPlace())

    def test_check_grad(self):
        pass

    def init_kernel_type(self):
        self.use_mkldnn = True


class TestSoftmaxMKLDNNOp2(TestSoftmaxOp2):
    def init_kernel_type(self):
        self.use_mkldnn = True


class TestSoftmaxMKLDNNOp3(TestSoftmaxOp3):
    def init_kernel_type(self):
        self.use_mkldnn = True


class TestSoftmaxMKLDNNOp4(TestSoftmaxOp4):
    def init_kernel_type(self):
        self.use_mkldnn = True


class TestSoftmaxMKLDNNOp5(TestSoftmaxOp5):
    def init_kernel_type(self):
        self.use_mkldnn = True


class TestSoftmaxMKLDNNOp6(TestSoftmaxOp6):
    def init_kernel_type(self):
        self.use_mkldnn = True


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