From b0c6171cd7617a511c29f3705b9f0a221289be2d Mon Sep 17 00:00:00 2001 From: qwopqwop200 Date: Thu, 13 Apr 2023 15:03:29 +0900 Subject: [PATCH] fix tab --- llama.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama.h b/llama.h index 890b111ba..3f62077c6 100644 --- a/llama.h +++ b/llama.h @@ -72,8 +72,8 @@ extern "C" { LLAMA_FTYPE_MOSTLY_Q4_0 = 2, // except 1d tensors LLAMA_FTYPE_MOSTLY_Q4_1 = 3, // except 1d tensors LLAMA_FTYPE_MOSTLY_Q4_1_SOME_F16 = 4, // tok_embeddings.weight and output.weight are F16 - LLAMA_FTYPE_MOSTLY_Q4_2 = 5, // except 1d tensors - LLAMA_FTYPE_MOSTLY_Q4_2_SOME_F16 = 6, // except 1d tensors + LLAMA_FTYPE_MOSTLY_Q4_2 = 5, // except 1d tensors + LLAMA_FTYPE_MOSTLY_Q4_2_SOME_F16 = 6, // except 1d tensors }; LLAMA_API struct llama_context_params llama_context_default_params();