[oneDNN]Sum bf16 kernel (#28382)
* - Added sum bf16 oneDNN test=develop * - Fix to UT of sum bf16 test=developTCChenlong-patch-1
parent
648b92c093
commit
ca41541472
@ -0,0 +1,59 @@
|
||||
# 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.
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import unittest
|
||||
import paddle.fluid.core as core
|
||||
from paddle.fluid.tests.unittests.test_sum_op import TestSumOp
|
||||
from paddle.fluid.tests.unittests.op_test import OpTest, convert_float_to_uint16
|
||||
from paddle import enable_static
|
||||
import numpy as np
|
||||
import paddle.fluid.op as fluid_op
|
||||
|
||||
|
||||
@unittest.skipIf(not core.supports_bfloat16(),
|
||||
"place does not support BF16 evaluation")
|
||||
class TestSumMKLDNN(TestSumOp):
|
||||
def setUp(self):
|
||||
self.op_type = "sum"
|
||||
self.use_mkldnn = True
|
||||
self.mkldnn_data_type = "bfloat16"
|
||||
|
||||
# float32 input to be use for reference
|
||||
x0 = np.random.random((25, 8)).astype('float32')
|
||||
x1 = np.random.random((25, 8)).astype('float32')
|
||||
x2 = np.random.random((25, 8)).astype('float32')
|
||||
|
||||
# actual input (bf16) to bf16 sum op
|
||||
x0_bf16 = convert_float_to_uint16(x0)
|
||||
x1_bf16 = convert_float_to_uint16(x1)
|
||||
x2_bf16 = convert_float_to_uint16(x2)
|
||||
|
||||
self.inputs = {"X": [("x0", x0_bf16), ("x1", x1_bf16), ("x2", x2_bf16)]}
|
||||
|
||||
y = x0 + x1 + x2
|
||||
self.outputs = {'Out': convert_float_to_uint16(y)}
|
||||
self.attrs = {'use_mkldnn': self.use_mkldnn}
|
||||
|
||||
def test_check_output(self):
|
||||
self.check_output_with_place(core.CPUPlace())
|
||||
|
||||
def test_check_grad(self):
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
enable_static()
|
||||
unittest.main()
|
Loading…
Reference in new issue