summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouie Helm <lhelm@umich.edu>2025-06-18 16:55:02 +0000
committerGitHub <noreply@github.com>2025-06-18 19:55:02 +0300
commit0ade534305b7e8ccad47b43679c67ae639c4c469 (patch)
tree1bba61551c7fabf3dbdfbc5e0267f12b67de4521
parent7479c2a3e51746b1fd2d8b741864572ed3512469 (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.cpp2
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;