Skip to content

Commit

Permalink
cpu: gemv: int8: check for b0 value properly
Browse files Browse the repository at this point in the history
fixup: cpu: gemv: optimize s8s8 gemv on avx512_core+
  • Loading branch information
Fomenko, Evarist M committed Oct 15, 2019
1 parent 5301981 commit 0dd5c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpu/gemm/s8x8s32/jit_avx512_core_gemv_s8x8s32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ jump_to_gemv_s8x8s32_impl(gemm_info_t<int8_t, b_type, int32_t> *arg) {

bool bo_ok
= IMPLICATION((std::is_same<b_type, int8_t>::value), arg->bo == 128)
|| IMPLICATION(
&& IMPLICATION(
(std::is_same<b_type, uint8_t>::value), arg->bo == 0);

bool applicable = (arg->offsetc == offset_type::fixed) && // Fix offset
Expand Down

0 comments on commit 0dd5c13

Please sign in to comment.