Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui committed Dec 23, 2024
1 parent f7bcea6 commit 90543f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layer/x86/gemm_int8.h
Original file line number Diff line number Diff line change
Expand Up @@ -2014,7 +2014,7 @@ static void pack_A_tile_fp32_to_int8(const Mat& A, Mat& AT, int i, int max_ii, i

__m256i _pp = combine4x2_epi32(_pp0, _pp1);
#if !__AVXVNNIINT8__
_w_shift = _mm256_dpbusd_epi32(_w_shift, _v127, _pp);
_w_shift = _mm256_comp_dpbusd_epi32(_w_shift, _v127, _pp);
#endif // !__AVXVNNIINT8__
_mm256_storeu_si256((__m256i*)pp, _pp);

Expand Down Expand Up @@ -2108,7 +2108,7 @@ static void pack_A_tile_fp32_to_int8(const Mat& A, Mat& AT, int i, int max_ii, i

__m256i _pp = combine4x2_epi32(_pp0, _pp1);
#if !__AVXVNNIINT8__
_w_shift = _mm256_dpbusd_epi32(_w_shift, _v127, _pp);
_w_shift = _mm256_comp_dpbusd_epi32(_w_shift, _v127, _pp);
#endif // !__AVXVNNIINT8__
_mm256_storeu_si256((__m256i*)pp, _pp);

Expand Down

0 comments on commit 90543f5

Please sign in to comment.