diff options
author | Louie Helm <lhelm@umich.edu> | 2025-06-18 16:55:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-18 19:55:02 +0300 |
commit | 0ade534305b7e8ccad47b43679c67ae639c4c469 (patch) | |
tree | 1bba61551c7fabf3dbdfbc5e0267f12b67de4521 | |
parent | 7479c2a3e51746b1fd2d8b741864572ed3512469 (diff) |
Fix KT Neon / ARM typo (#536)
Removes errant ";" in front of 0xCBAC1FED in non-x86 code
```
error: expected primary-expression before ';' token
constexpr static uint32_t ka = ;0xCBAC1FED;
^
error: expected unqualified-id before numeric constant
constexpr static uint32_t ka = ;0xCBAC1FED;
^
```
-rw-r--r-- | ggml/src/iqk/iqk_gemm_ktquants.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ggml/src/iqk/iqk_gemm_ktquants.cpp b/ggml/src/iqk/iqk_gemm_ktquants.cpp index 2ddfbe86..7e895f27 100644 --- a/ggml/src/iqk/iqk_gemm_ktquants.cpp +++ b/ggml/src/iqk/iqk_gemm_ktquants.cpp @@ -1586,7 +1586,7 @@ void mul_mat_iq4_kt_F32_T(int n, const void * vx, size_t bx, const DataInfo& inf } struct Trellis3 { - constexpr static uint32_t ka = ;0xCBAC1FED; + constexpr static uint32_t ka = 0xCBAC1FED; constexpr static uint32_t ka1 = ka*ka; constexpr static uint32_t ka2 = ka1*ka; constexpr static uint32_t ka3 = ka2*ka; |