From 8dbb5449db259a9c24796e7927d89bee98b6c8f5 Mon Sep 17 00:00:00 2001 From: Bruce MacDonald Date: Thu, 5 Oct 2023 11:21:12 -0400 Subject: [PATCH] remove warm up logging --- common/common.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/common.cpp b/common/common.cpp index 7370017..c4433fe 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -839,8 +839,6 @@ std::tuple llama_init_from_gpt_par } { - LOG("warming up the model with an empty run\n"); - std::vector tmp = { llama_token_bos(lctx), llama_token_eos(lctx), }; llama_decode(lctx, llama_batch_get_one(tmp.data(), std::min(tmp.size(), (size_t) params.n_batch), 0, 0)); llama_kv_cache_tokens_rm(lctx, -1, -1); -- 2.39.2 (Apple Git-143)