Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
黄宇扬 committed May 24, 2024
1 parent bbc0c14 commit 87135b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/devices/cpu/cpudevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ namespace fastllm {

MultiThreadMultiplyOp(uint8_t *a, uint8_t *b, int32_t *c, int n, int m, int k, int kstride) :
a(a), b(b), c(c), n(n), m(m), k(k), kstride(kstride) {}
#ifdef __ARM_FEATURE_DOTPROD
inline static void RunSomeBlock(uint8_t *weightWalk, uint8_t *inputStart, int32_t *c,
int curBlock, uint32x4_t *sum, uint8x16_t *vi,
int block, int k, int m, int kstride) {
Expand Down Expand Up @@ -1180,6 +1180,7 @@ namespace fastllm {
}
}
}
#endif

void Run() {
#ifdef __ARM_FEATURE_DOTPROD
Expand Down

0 comments on commit 87135b4

Please sign in to comment.