From 35613271b18d212b47345ad0c09c3b27d109d0bd Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 26 Feb 2024 18:45:16 +0200 Subject: [PATCH] llama : disable log message ggml-ci --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 2815cccf6..8c2fc9fde 100644 --- a/llama.cpp +++ b/llama.cpp @@ -8013,7 +8013,7 @@ static int llama_decode_internal( // queue defragmentation for next llama_kv_cache_update if (fragmentation > cparams.defrag_thold) { - LLAMA_LOG_INFO("fragmentation: %.2f\n", fragmentation); + //LLAMA_LOG_INFO("fragmentation: %.2f\n", fragmentation); llama_kv_cache_defrag(kv_self); }