From e4ac8ae720847b674c681e3b6218fc1c67683725 Mon Sep 17 00:00:00 2001 From: Nexesenex <124105151+Nexesenex@users.noreply.github.com> Date: Fri, 10 May 2024 14:57:26 +0200 Subject: [PATCH] Update llama.h respect current numerology --- llama.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama.h b/llama.h index 9f89a31fc..02c8e1ec7 100644 --- a/llama.h +++ b/llama.h @@ -139,8 +139,8 @@ extern "C" { LLAMA_FTYPE_MOSTLY_IQ2_M = 29, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ4_XS = 30, // except 1d tensors LLAMA_FTYPE_MOSTLY_IQ1_M = 31, // except 1d tensors - LLAMA_FTYPE_MOSTLY_IQ1_XS = 32, // except 1d tensors - LLAMA_FTYPE_MOSTLY_BF16 = 33, // except 1d tensors + LLAMA_FTYPE_MOSTLY_BF16 = 32, // except 1d tensors + LLAMA_FTYPE_MOSTLY_IQ1_XS = 33, // except 1d tensors LLAMA_FTYPE_GUESSED = 1024, // not specified in the model file };