mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-01-26 17:20:01 +00:00
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;
^
```
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user