Skip to content

Commit f0860e3

Browse files
committed
cpu: inner product: move mkl-based version up
1 parent 4c1d921 commit f0860e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cpu/cpu_engine.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,11 @@ static const pd_create_f cpu_impl_list[] = {
163163
INSTANCE(ref_batch_normalization_bwd_t<data_type::f32>),
164164
/* inner product */
165165
INSTANCE(jit_avx2_inner_product_fwd_t),
166-
INSTANCE(jit_avx2_inner_product_bwd_weights_t),
167-
INSTANCE(jit_avx2_inner_product_bwd_data_t),
168166
INSTANCE(gemm_inner_product_fwd_t<data_type::f32>),
169167
INSTANCE(gemm_inner_product_bwd_data_t<data_type::f32>),
170168
INSTANCE(gemm_inner_product_bwd_weights_t<data_type::f32>),
169+
INSTANCE(jit_avx2_inner_product_bwd_weights_t),
170+
INSTANCE(jit_avx2_inner_product_bwd_data_t),
171171
INSTANCE(ref_inner_product_fwd_t<data_type::f32>),
172172
INSTANCE(ref_inner_product_bwd_data_t<data_type::f32>),
173173
INSTANCE(ref_inner_product_bwd_weights_t<data_type::f32>),

0 commit comments

Comments
 (0)