forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_matmul_bf16_onednn_op.py
More file actions
182 lines (149 loc) · 6.28 KB
/
test_matmul_bf16_onednn_op.py
File metadata and controls
182 lines (149 loc) · 6.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# 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
import numpy as np
from op_test import OpTest, convert_float_to_uint16
from paddle import enable_static
from paddle.base import core
@unittest.skipIf(
not core.supports_bfloat16(), "place does not support BF16 evaluation"
)
class TestMatmulBf16OneDNNOp(OpTest):
def generate_data(self):
self.x_fp32 = np.random.random((25, 2, 2)).astype(np.float32)
self.y_fp32 = np.random.random((25, 2, 2)).astype(np.float32)
self.out = self.alpha * np.matmul(self.x_fp32, self.y_fp32)
def set_attributes(self):
self.attrs = {
'alpha': self.alpha,
"use_onednn": self.use_onednn,
"onednn_data_type": self.onednn_data_type,
"force_fp32_output": self.force_fp32_output,
'transpose_X': False,
'transpose_Y': False,
}
def setUp(self):
self.op_type = "matmul"
self.alpha = 1.0
self.use_onednn = True
self.dtype = np.uint16
self.onednn_data_type = "bfloat16"
self.force_fp32_output = False
self.generate_data()
self.set_attributes()
if not self.force_fp32_output:
self.out = convert_float_to_uint16(self.out)
self.outputs = {'Out': self.out}
self.x_bf16 = convert_float_to_uint16(self.x_fp32)
self.y_bf16 = convert_float_to_uint16(self.y_fp32)
self.inputs = {'X': self.x_bf16, 'Y': self.y_bf16}
def test_check_output(self):
self.check_output_with_place(core.CPUPlace())
def test_check_grad(self):
self.calculate_grads()
self.check_grad_with_place(
core.CPUPlace(),
["X", "Y"],
"Out",
check_dygraph=False,
user_defined_grads=[self.dx, self.dy],
user_defined_grad_outputs=[convert_float_to_uint16(self.dout)],
)
def matmul_grad(self, x, transpose_x, y, transpose_y):
x_transpose_axes = [1, 0] if x.ndim == 2 else [0, 2, 1]
y_transpose_axes = [1, 0] if y.ndim == 2 else [0, 2, 1]
x = np.transpose(x, x_transpose_axes) if transpose_x else x
y = np.transpose(y, y_transpose_axes) if transpose_y else y
return self.alpha * np.matmul(x, y)
def calculate_grads(self):
x_transpose_axes = [1, 0] if self.x_fp32.ndim == 2 else [0, 2, 1]
y_transpose_axes = [1, 0] if self.y_fp32.ndim == 2 else [0, 2, 1]
x = (
np.transpose(self.x_fp32, x_transpose_axes)
if self.attrs['transpose_X'] is True
else self.x_fp32
)
y = (
np.transpose(self.y_fp32, y_transpose_axes)
if self.attrs['transpose_Y'] is True
else self.y_fp32
)
dout = self.alpha * np.matmul(x, y)
if (
self.attrs['transpose_X'] is True
and self.attrs['transpose_Y'] is True
):
self.dx = self.matmul_grad(self.y_fp32, True, dout, True)
self.dy = self.matmul_grad(dout, True, self.x_fp32, True)
elif (
self.attrs['transpose_X'] is True
and self.attrs['transpose_Y'] is False
):
self.dx = self.matmul_grad(self.y_fp32, False, dout, True)
self.dy = self.matmul_grad(self.x_fp32, False, dout, False)
elif (
self.attrs['transpose_X'] is False
and self.attrs['transpose_Y'] is True
):
self.dx = self.matmul_grad(dout, False, self.y_fp32, False)
self.dy = self.matmul_grad(dout, True, self.x_fp32, False)
else:
self.dx = self.matmul_grad(dout, False, self.y_fp32, True)
self.dy = self.matmul_grad(self.x_fp32, True, dout, False)
self.dout = dout
class TestDnnlMatMulOpAlpha(TestMatmulBf16OneDNNOp):
def generate_data(self):
self.x_fp32 = np.random.random((17, 2, 3)).astype(np.float32)
self.y_fp32 = np.random.random((17, 3, 2)).astype(np.float32)
self.alpha = 2.0
self.out = self.alpha * np.matmul(self.x_fp32, self.y_fp32)
class TestDnnlMatMulOp2D(TestMatmulBf16OneDNNOp):
def generate_data(self):
self.x_fp32 = np.random.random((12, 9)).astype(np.float32)
self.y_fp32 = np.random.random((9, 12)).astype(np.float32)
self.out = np.matmul(self.x_fp32, self.y_fp32)
class TestDnnlMatMulOpTransposeX(TestMatmulBf16OneDNNOp):
def generate_data(self):
self.x_fp32 = np.random.random((12, 9)).astype(np.float32)
self.y_fp32 = np.random.random((12, 9)).astype(np.float32)
self.out = np.matmul(np.transpose(self.x_fp32), self.y_fp32)
def set_attributes(self):
self.attrs = {
"use_onednn": self.use_onednn,
"onednn_data_type": self.onednn_data_type,
'transpose_X': True,
'transpose_Y': False,
}
class TestDnnlMatMulOpTransposeY(TestMatmulBf16OneDNNOp):
def generate_data(self):
self.x_fp32 = np.random.random((12, 9)).astype(np.float32)
self.y_fp32 = np.random.random((12, 9)).astype(np.float32)
self.out = np.matmul(self.x_fp32, np.transpose(self.y_fp32))
def set_attributes(self):
self.attrs = {
"use_onednn": self.use_onednn,
"onednn_data_type": self.onednn_data_type,
'transpose_Y': True,
'transpose_X': False,
}
class TestMatmulBf16OneDNNForceFp32Output(TestMatmulBf16OneDNNOp):
def generate_data(self):
self.x_fp32 = np.random.random((12, 9)).astype(np.float32)
self.y_fp32 = np.random.random((9, 12)).astype(np.float32)
self.force_fp32_output = True
self.alpha = 0.5
self.out = self.alpha * np.matmul(self.x_fp32, self.y_fp32)
if __name__ == "__main__":
enable_static()
unittest.main()