Skip to content

Commit

Permalink
fix CIs
Browse files Browse the repository at this point in the history
  • Loading branch information
yufenglee committed Mar 18, 2024
1 parent e48225f commit 659d592
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,18 @@ index 99f3ccc..a11de9d 100644
}
}
if (zero_points) {
diff --git a/bestla/bestla/kernel_avx512f.h b/bestla/bestla/kernel_avx512f.h
index 6783ee8..59822e5 100644
--- a/bestla/bestla/kernel_avx512f.h
+++ b/bestla/bestla/kernel_avx512f.h
@@ -673,8 +673,8 @@ inline BTLA_CODE decompress_kblock_s3_s8fp(utils::bit2x4* bit2ptr, utils::bit1x8
zmm1 = _mm512_sllv_epi32(zmm1, zmm_shift); // int3_clip => int8
zmm2 = _mm512_sllv_epi32(zmm2, zmm_shift); // int3_clip => int8

- _mm512_storeu_epi8((__m512i*)dst, zmm1);
- _mm512_storeu_epi8((__m512i*)(dst + 64), zmm2);
+ _mm512_storeu_si512((__m512i*)dst, zmm1);
+ _mm512_storeu_si512((__m512i*)(dst + 64), zmm2);
};

assert(head_ignore_num % 8 == 0);
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#pragma warning(disable : 4244)
#pragma warning(disable : 4267)
#pragma warning(disable : 4702)
#pragma warning(disable : 4127)
#endif

#include "bestla/bestla_prologue_a.h"
Expand Down

0 comments on commit 659d592

Please sign in to comment.