forked from uxlfoundation/oneDNN
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathjit_uni_depthwise_injector.cpp
272 lines (238 loc) · 10.8 KB
/
jit_uni_depthwise_injector.cpp
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/*******************************************************************************
* Copyright 2019-2020 Intel Corporation
*
* 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.
*******************************************************************************/
#include "common/c_types_map.hpp"
#include "common/dnnl_thread.hpp"
#include "common/nstl.hpp"
#include "common/utils.hpp"
#include "cpu/x64/injectors/injector_utils.hpp"
#include "cpu/x64/injectors/jit_uni_depthwise_injector.hpp"
namespace dnnl {
namespace impl {
namespace cpu {
namespace x64 {
template <cpu_isa_t isa>
int jit_uni_depthwise_injector_f32<isa>::aux_vecs_count(alg_kind_t depthwise_alg, bool is_broadcast) {
switch (depthwise_alg) {
case alg_kind::depthwise_scale_shift: return isa == sse41 || is_broadcast ? 1 : 0;
case alg_kind::depthwise_prelu: return 2;
default: assert(!"unsupported depthwise algorithm");
}
return 0;
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::injector_preamble(size_t start_idx, size_t end_idx, bool is_broadcast) {
preserved_vecs_count = 0;
vecs_to_preserve = (size_t)jit_uni_depthwise_injector_f32<isa>::aux_vecs_count(depthwise_alg, is_broadcast);
for (size_t i = 0; i < vecs_count; i++) {
if (preserved_vecs_count >= vecs_to_preserve)
break;
if (i < start_idx || i >= end_idx) {
preserved_vec_idxs[preserved_vecs_count] = i;
preserved_vecs_count++;
}
}
start_idx_tail = start_idx;
size_t preserved_vecs_count_tail = vecs_to_preserve - preserved_vecs_count;
for (size_t i = 0; i < preserved_vecs_count_tail; i++) {
preserved_vec_idxs[preserved_vecs_count] = start_idx + i;
preserved_vecs_count++;
start_idx_tail = start_idx + i + 1;
}
h->sub(h->rsp, preserved_vecs_count * vlen);
for (size_t i = 0; i < preserved_vecs_count; ++i)
h->uni_vmovups(h->ptr[h->rsp + i * vlen], Vmm(preserved_vec_idxs[i]));
assign_regs();
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::injector_preamble_tail(size_t start_idx, size_t end_idx) {
size_t tail_vecs_to_preserve = start_idx_tail - start_idx;
int idx_off = (vecs_to_preserve - tail_vecs_to_preserve);
if (tail_vecs_to_preserve > 0) {
h->add(h->rsp, idx_off * vlen);
for (size_t i = 0; i < tail_vecs_to_preserve; ++i)
h->uni_vmovups(Vmm(preserved_vec_idxs[idx_off + i]), h->ptr[h->rsp + i * vlen]);
for (size_t i = 0; i < tail_vecs_to_preserve; ++i) {
preserved_vec_idxs[idx_off + i] += tail_vecs_to_preserve;
}
for (size_t i = 0; i < tail_vecs_to_preserve; ++i)
h->uni_vmovups(h->ptr[h->rsp + i * vlen], Vmm(preserved_vec_idxs[idx_off + i]));
h->sub(h->rsp, idx_off * vlen);
assign_regs();
}
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::injector_postamble() {
for (size_t i = 0; i < preserved_vecs_count; ++i)
h->uni_vmovups(Vmm(preserved_vec_idxs[i]), h->ptr[h->rsp + i * vlen]);
h->add(h->rsp, preserved_vecs_count * vlen);
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::assign_regs() {
vmm_mask = Vmm(preserved_vec_idxs[0]);
vmm_aux0 = Vmm(preserved_vec_idxs[1]);
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::scale_shift_compute_vector(const Vmm &vmm_src,
const Xbyak::Reg64& p_weights, const Xbyak::Reg64& p_bias, bool is_broadcast, int offset, bool scale_only) {
size_t weights_off = post_op_.depthwise.offset[post_op_.depthwise.scales] * sizeof(float);
size_t bias_off = post_op_.depthwise.offset[post_op_.depthwise.shifts] * sizeof(float);
if (isa == sse41) {
if (is_broadcast)
h->uni_vbroadcastss(vmm_mask, h->ptr[p_weights + weights_off]);
else
h->movups(vmm_mask, h->ptr[p_weights + offset + weights_off]);
h->mulps(vmm_src, vmm_mask);
if (!scale_only) {
if (is_broadcast)
h->uni_vbroadcastss(vmm_mask, h->ptr[p_bias + bias_off]);
else
h->movups(vmm_mask, h->ptr[p_bias + offset + bias_off]);
h->addps(vmm_src, vmm_mask);
}
} else {
if (is_broadcast) {
h->uni_vbroadcastss(vmm_mask, h->ptr[p_weights + weights_off]);
h->uni_vmulps(vmm_src, vmm_src, vmm_mask);
if (!scale_only) {
h->uni_vbroadcastss(vmm_mask, h->ptr[p_bias + bias_off]);
h->uni_vaddps(vmm_src, vmm_src, vmm_mask);
}
} else {
h->uni_vmulps(vmm_src, vmm_src, h->ptr[p_weights + offset + weights_off]);
if (!scale_only)
h->uni_vaddps(vmm_src, vmm_src, h->ptr[p_bias + offset + bias_off]);
}
};
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::prelu_compute_vector(const Vmm &vmm_src,
const Xbyak::Reg64& p_weights, const Xbyak::Reg64& p_bias, bool is_broadcast, int offset) {
const unsigned char _cmp_gt_os = 6;
const unsigned char _cmp_lt_os = 1;
size_t weights_off = post_op_.depthwise.offset[post_op_.depthwise.scales] * sizeof(float);
if (isa == sse41) {
h->pxor(vmm_mask, vmm_mask);
h->cmpps(vmm_mask, vmm_src, _cmp_gt_os);
if (is_broadcast)
h->uni_vbroadcastss(vmm_aux0, h->ptr[p_weights + weights_off]);
else
h->movups(vmm_aux0, h->ptr[p_weights + offset + weights_off]);
h->mulps(vmm_aux0, vmm_src);
h->blendvps(vmm_src, vmm_aux0);
} else if (isa == avx2) {
if (is_broadcast) {
h->uni_vbroadcastss(vmm_mask, h->ptr[p_weights + weights_off]);
h->vmulps(vmm_aux0, vmm_src, vmm_mask);
} else
h->vmulps(vmm_aux0, vmm_src, h->ptr[p_weights + offset + weights_off]);
h->vxorps(vmm_mask, vmm_mask, vmm_mask);
h->vcmpgtps(vmm_mask, vmm_src, vmm_mask);
h->vblendvps(vmm_src, vmm_aux0, vmm_src, vmm_mask);
} else if (isa == avx512_core) {
h->vxorpd(vmm_mask, vmm_mask, vmm_mask);
h->vmovups(vmm_aux0, vmm_src);
h->vcmpps(k_mask, vmm_src, vmm_mask, _cmp_lt_os);
if (is_broadcast) {
h->uni_vbroadcastss(vmm_mask, h->ptr[p_weights + weights_off]);
h->vmulps(vmm_src | k_mask, vmm_aux0, vmm_mask);
} else
h->vmulps(vmm_src | k_mask, vmm_aux0, h->ptr[p_weights + offset + weights_off]);
}
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::compute_body(size_t start_idx, size_t end_idx,
const Xbyak::Reg64& p_weights, const Xbyak::Reg64& p_bias, bool is_broadcast, bool scale_only) {
for (size_t idx = start_idx; idx < end_idx; idx++) {
switch (depthwise_alg) {
case alg_kind::depthwise_scale_shift:
scale_shift_compute_vector(Vmm(idx), p_weights, p_bias, is_broadcast, 0, scale_only); break;
case alg_kind::depthwise_prelu:
prelu_compute_vector(Vmm(idx), p_weights, p_bias, is_broadcast); break;
default: assert(!"unsupported depthwise algorithm");
}
}
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::compute_vector_range(int start_idx, int end_idx,
const Xbyak::Reg64& p_weights, const Xbyak::Reg64& p_bias, bool is_broadcast, bool scale_only) {
injector_preamble(start_idx, end_idx, is_broadcast);
compute_body(start_idx_tail, end_idx, p_weights, p_bias, is_broadcast, scale_only);
injector_preamble_tail(start_idx, end_idx);
compute_body(start_idx, start_idx_tail, p_weights, p_bias, is_broadcast, scale_only);
injector_postamble();
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::init_ptrs(const Xbyak::RegExp& ptr_data,
const Xbyak::Reg64& reg_d_weights, const Xbyak::Reg64& reg_d_bias,
const Xbyak::Operand& ch_off, bool is_broadcast) {
h->mov(reg_d_weights, h->ptr[ptr_data]);
if (post_op_.depthwise.alg == alg_kind::depthwise_scale_shift)
h->mov(reg_d_bias, h->ptr[ptr_data]);
if (!is_broadcast) {
h->add(reg_d_weights, ch_off);
if (post_op_.depthwise.alg == alg_kind::depthwise_scale_shift)
h->add(reg_d_bias, ch_off);
}
}
template <typename Vmm>
static void push_vmm(jit_generator *host, const Vmm &vmm) {
host->sub(host->rsp, vreg_traits<Vmm>::vlen);
host->uni_vmovups(host->ptr[host->rsp], vmm);
}
template <typename Vmm>
static void pop_vmm(jit_generator *host, const Vmm &vmm) {
host->uni_vmovups(vmm, host->ptr[host->rsp]);
host->add(host->rsp, vreg_traits<Vmm>::vlen);
}
template <cpu_isa_t isa>
void jit_uni_depthwise_injector_f32<isa>::compute(int start_idx, int end_idx,
int vmm_d_weights_idx, int vmm_d_bias_idx,
const Xbyak::Reg64& reg_d_weights, const Xbyak::Reg64& reg_d_bias,
bool is_broadcast, int offset, bool need_to_preserve) {
vmm_mask = Vmm(vmm_d_weights_idx);
vmm_aux0 = Vmm(vmm_d_bias_idx);
if (need_to_preserve) {
preserved_vecs_count = aux_vecs_count(depthwise_alg, is_broadcast);
if (preserved_vecs_count > 0)
push_vmm(h, vmm_mask);
if (preserved_vecs_count > 1)
push_vmm(h, vmm_aux0);
}
for (int idx = start_idx; idx < end_idx; idx++) {
switch (depthwise_alg) {
case alg_kind::depthwise_scale_shift:
scale_shift_compute_vector(Vmm(idx), reg_d_weights, reg_d_bias, is_broadcast, offset); break;
case alg_kind::depthwise_prelu:
prelu_compute_vector(Vmm(idx), reg_d_weights, reg_d_bias, is_broadcast, offset); break;
default: assert(!"unsupported depthwise algorithm");
}
}
if (need_to_preserve) {
if (preserved_vecs_count > 1)
pop_vmm(h, vmm_aux0);
if (preserved_vecs_count > 0)
pop_vmm(h, vmm_mask);
}
}
template struct jit_uni_depthwise_injector_f32<avx512_core_bf16>;
template struct jit_uni_depthwise_injector_f32<avx512_core>;
template struct jit_uni_depthwise_injector_f32<avx>;
template struct jit_uni_depthwise_injector_f32<avx2>;
template struct jit_uni_depthwise_injector_f32<sse41>;
} // namespace x64
} // namespace cpu
} // namespace impl
} // namespace dnnl