diff options
author | Kawrakow <iwankawrakow@gmail.com> | 2025-02-06 18:45:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-06 18:45:28 +0200 |
commit | a08501ee5216402458d3d3e9b9af5763705eaffe (patch) | |
tree | 06db79c9c3e5bdf15180071d2e4d4abc7d3a8c85 /include | |
parent | 7f61b3068e18728e5e7e2b95546ff03dd2fd41ac (diff) |
Rename q4_0_r4, q8_0_r4 and iq4_xs_r4 to _r8 (#189)
* Rename q4_0_r4 to q4_0_r8 to reflect actual row interleaving
* Rename q8_0_r4 to q8_0_r8 to reflect actual row interleaving
* Rename iq4_xs_r4 to iq4_xs_r8 to reflect actual row interleaving
---------
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/llama.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llama.h b/include/llama.h index 3f25b296..730c087a 100644 --- a/include/llama.h +++ b/include/llama.h @@ -181,8 +181,8 @@ extern "C" { LLAMA_FTYPE_MOSTLY_IQ2_KS = 147, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ4_KSS = 148, // except 1d tensors // - LLAMA_FTYPE_MOSTLY_Q4_0_R4 = 202, // except 1d tensors - LLAMA_FTYPE_MOSTLY_Q8_0_R4 = 207, // except 1d tensors + LLAMA_FTYPE_MOSTLY_Q4_0_R8 = 202, // except 1d tensors + LLAMA_FTYPE_MOSTLY_Q8_0_R8 = 207, // except 1d tensors LLAMA_FTYPE_MOSTLY_Q5_0_R4 = 208, // except 1d tensors LLAMA_FTYPE_MOSTLY_Q2_K_R4 = 210, // except 1d tensors LLAMA_FTYPE_MOSTLY_Q3_K_R4 = 211, // except 1d tensors @@ -196,7 +196,7 @@ extern "C" { LLAMA_FTYPE_MOSTLY_IQ4_NL_R4 = 225, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ3_S_R4 = 226, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ2_M_R4 = 229, // except 1d tensors - LLAMA_FTYPE_MOSTLY_IQ4_XS_R4 = 230, // except 1d tensors + LLAMA_FTYPE_MOSTLY_IQ4_XS_R8 = 230, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ1_M_R4 = 231, // except 1d tensors LLAMA_FTYPE_MOSTLY_Q6_0_R4 = 335, // except 1d tensors LLAMA_FTYPE_MOSTLY_BF16_R16 = 232, // except 1d tensors |