diff options
author | Iwan Kawrakow <iwan.kawrakow@gmail.com> | 2024-08-07 16:49:43 +0300 |
---|---|---|
committer | Kawrakow <48489457+ikawrakow@users.noreply.github.com> | 2024-08-09 16:00:31 +0200 |
commit | a9b3f4a54b544a6e9adde65673533e0154d7767a (patch) | |
tree | 05390b1a8e92435de096215aa207ccd49e220b7a /include/llama.h | |
parent | cfb0410067be051dd8ea76c08280a3b04d5a5188 (diff) |
iq6_k: WIP (quantize/dequantize)
Diffstat (limited to 'include/llama.h')
-rw-r--r-- | include/llama.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llama.h b/include/llama.h index a5a2deb1..9ae88060 100644 --- a/include/llama.h +++ b/include/llama.h @@ -174,7 +174,8 @@ extern "C" { LLAMA_FTYPE_MOSTLY_IQ3_K = 39, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ4_K = 40, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ5_K = 41, // except 1d tensors - LLAMA_FTYPE_MOSTLY_IQ2_TN = 42, // except 1d tensors + LLAMA_FTYPE_MOSTLY_IQ6_K = 42, // except 1d tensors + LLAMA_FTYPE_MOSTLY_IQ2_TN = 43, // except 1d tensors LLAMA_FTYPE_GUESSED = 1024, // not specified in the model file }; |