Skip to content

Commit

Permalink
cpu: inner product: move mkl-based version up
Browse files Browse the repository at this point in the history
  • Loading branch information
tprimak committed Mar 10, 2017
1 parent 4c1d921 commit f0860e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpu/cpu_engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ static const pd_create_f cpu_impl_list[] = {
INSTANCE(ref_batch_normalization_bwd_t<data_type::f32>),
/* inner product */
INSTANCE(jit_avx2_inner_product_fwd_t),
INSTANCE(jit_avx2_inner_product_bwd_weights_t),
INSTANCE(jit_avx2_inner_product_bwd_data_t),
INSTANCE(gemm_inner_product_fwd_t<data_type::f32>),
INSTANCE(gemm_inner_product_bwd_data_t<data_type::f32>),
INSTANCE(gemm_inner_product_bwd_weights_t<data_type::f32>),
INSTANCE(jit_avx2_inner_product_bwd_weights_t),
INSTANCE(jit_avx2_inner_product_bwd_data_t),
INSTANCE(ref_inner_product_fwd_t<data_type::f32>),
INSTANCE(ref_inner_product_bwd_data_t<data_type::f32>),
INSTANCE(ref_inner_product_bwd_weights_t<data_type::f32>),
Expand Down

0 comments on commit f0860e3

Please sign in to comment.