Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
saharNooby committed Nov 14, 2023
1 parent e9fbb2f commit 87fe04f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rwkv_operators_wkv_v5.inc
Expand Up @@ -26,8 +26,8 @@
#define MULTADD(x, y, z) vmlaq_f32(z, x, y)
#else
#define SIMD_WIDTH 1
#define LOAD(x) x
#define STORE(x, y) x = y
#define LOAD(x) *x
#define STORE(x, y) *x = y
#define SET1(x) x
#define MULTIPLY(x, y) x * y
#define MULTADD(x, y, z) x * y + z
Expand Down

0 comments on commit 87fe04f

Please sign in to comment.