From b3553335a3282940aa7fd415b7c65477e28d6626 Mon Sep 17 00:00:00 2001 From: Nexesenex <124105151+Nexesenex@users.noreply.github.com> Date: Mon, 25 Mar 2024 21:06:46 +0100 Subject: [PATCH] Update llama.h - change IQ1_XS enum number From 31 to 32, because IQ1_M will come with 31. --- llama.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.h b/llama.h index e83fbe78b..da9597b67 100644 --- a/llama.h +++ b/llama.h @@ -117,7 +117,7 @@ extern "C" { LLAMA_FTYPE_MOSTLY_IQ2_S = 28, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ2_M = 29, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ4_XS = 30, // except 1d tensors - LLAMA_FTYPE_MOSTLY_IQ1_XS = 31, // except 1d tensors + LLAMA_FTYPE_MOSTLY_IQ1_XS = 32, // except 1d tensors LLAMA_FTYPE_GUESSED = 1024, // not specified in the model file };