diff options
author | Kawrakow <iwankawrakow@gmail.com> | 2024-12-17 10:18:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-17 10:18:33 +0100 |
commit | 4ade4c568c331acad22537f7b9519c740c7a06d0 (patch) | |
tree | 4f80795dd006c19c9e9e418f4813628dcf72decd /include/llama.h | |
parent | d69344f8ea72c6fe6ec16300b939586fa9633e2e (diff) |
IQ2_K_R4 (#146)
* iq2_k_r4: Zen4
* iq2_k_r4: NEON
* iq2_k_r4: better matrix x vector multiplication on NEON
---------
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
Diffstat (limited to 'include/llama.h')
-rw-r--r-- | include/llama.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llama.h b/include/llama.h index 026cf08e..1627a752 100644 --- a/include/llama.h +++ b/include/llama.h @@ -193,6 +193,7 @@ extern "C" { LLAMA_FTYPE_MOSTLY_Q6_0_R4 = 335, // except 1d tensors LLAMA_FTYPE_MOSTLY_BF16_R16 = 232, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ2_BN_R4 = 337, // except 1d tensors + LLAMA_FTYPE_MOSTLY_IQ2_K_R4 = 338, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ3_K_R4 = 339, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ4_K_R4 = 340, // except 1d tensors LLAMA_FTYPE_MOSTLY_Q8_K_R8 = 399, // except 1d tensors |