From e219fada4e52f4071469cf6ae62d6766512cc94e Mon Sep 17 00:00:00 2001 From: Lizonghang <870644199@qq.com> Date: Wed, 19 Feb 2025 16:24:12 +0400 Subject: [PATCH] disable timer --- src/llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama.cpp b/src/llama.cpp index 1977f79b..2aeb0c69 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -106,7 +106,7 @@ struct Timer { const char * name; int64_t start_time; - bool enable_timer = true; + bool enable_timer = false; Timer(const char * name) : name(name), start_time(ggml_time_us()) {} ~Timer() { if (enable_timer) {